-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
59 lines (54 loc) · 1.73 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace]
members = ["xtask"]
[package]
name = "verdi"
version = "0.0.1"
edition = "2021"
license = "Apache-2.0"
authors = ["Federico Maria Morrone <[email protected]>"]
readme = "README.md"
repository = "https://github.com/verdiwm/verdi"
publish = false
[profile.release]
lto = true
codegen-units = 1
strip = true
[dependencies]
anyhow = "1.0.95"
bytes = "1.9.0"
rustix = { version = "0.38.43", features = ["fs", "mm", "process"] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = [
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"tracing",
] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = [
"env-filter",
"tracing-log",
] }
wgpu = { version = "24.0.0", default-features = false, features = ["wgsl"] }
clap = { version = "4.5.26", features = ["derive"] }
toml_edit = { version = "0.22.22", features = ["serde"] }
serde = { version = "1.0.217", features = ["derive"] }
diretto = "0.0.4"
raw-window-handle = "0.6.2"
rand = "0.9.0"
bytemuck = { version = "1.21.0", features = ["derive"] }
colpetto = { version = "0.4.0", features = ["tokio", "tracing"] }
waynest = { version = "0.0.19", features = ["server", "stable"] }
home = "0.5.11"
tokio-stream = { version = "0.1.17", features = ["sync"] }
[build-dependencies]
chrono = { version = "0.4.39", default-features = false, features = ["std"] }
git2 = { version = "0.20.0", default-features = false }
[patch.crates-io]
wgpu = { git = "https://github.com/verdiwm/wgpu", branch = "drm-support" }
raw-window-handle = { git = "https://github.com/morr0ne/raw-window-handle", branch = "drm-connector" }
diretto = { git = "https://github.com/verdiwm/diretto.git" }
# colpetto = { path = "../colpetto" }
# waynest = { path = "../waynest" }