-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 849 Bytes
/
Cargo.toml
File metadata and controls
31 lines (29 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[workspace]
members = [
"src/platforms/evdev-rs",
"src/server/frontend_wayland/wayland_rs"
]
resolver = "2"
[workspace.package]
name = "mir"
version = "0.1.0"
edition = "2021"
rust-version = "1.82.0"
[workspace.dependencies]
cxx = { version = ">=1.0.167" }
cxx-build = { version = ">=1.0.167" }
input = { version = ">=0.8.3, <0.10", features = ["libinput_1_19"] }
libc = "0.2.175"
nix = { version = ">=0.30, <0.32", features = ["poll"] }
wayland-server = { version = ">=0.31" }
calloop = { version = ">=0.10, <0.15" }
log = "0.4"
serde = { version = "1", features = ["derive"] }
quick-xml = { version = ">=0.38", features = ["serialize"] }
wayland-scanner = { version = ">=0.31" }
wayland-backend = { version = ">=0.3" }
bitflags = "2"
quote = "1"
proc-macro2 = "1"
prettyplease = "0.2"
syn = { version = "2", features = ["full", "parsing"] }