-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 1020 Bytes
/
Cargo.toml
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
32
33
34
35
36
37
38
39
40
[package]
name = "isabel-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"crates/bindings",
"crates/linux-event-codes",
"demo/isabel",
"apps/networksettings/isabel",
]
[dependencies]
bindings = { path = "./crates/bindings" }
linux-event-codes = { path = "./crates/linux-event-codes" }
num-derive = "0.4.2"
num-traits = "0.2.19"
cursor-icon = "1.1.0"
env_logger = "0.11.5"
anyhow = "1.0.86"
clap = { version = "4.5.19", features = ["derive"] }
khronos-egl = { version = "6.0.0", features = ["dynamic"] }
log = "0.4.22"
raw-window-handle = "0.6.2"
wayland-client = { version = "0.31.1" }
wayland-backend = { version = "0.3.0", features = ["client_system"] }
smithay-client-toolkit = "0.19.2"
wayland-egl = "0.32.4"
downcast-rs = "1.2.1"
xkeysym = "0.2.1"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
thiserror = "1.0.64"
[dev-dependencies]
glow = "0.15.0"