-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
90 lines (81 loc) · 2.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[package]
name = "wprs"
version = "0.1.0"
authors = ["Nicolas Avrutin <[email protected]>"]
license = "Apache-2.0"
edition = "2021"
build = "build.rs"
[profile.release-with-symbols]
inherits = "release"
debug = true
[profile.release-lto]
inherits = "release-with-symbols"
lto = true
codegen-units = 1
[dependencies]
anyhow = "1.0.86"
arrayref = "0.3.7"
bimap = "0.6.3"
bpaf = "0.9.12"
bytemuck = { version = "1.16.0", features = ["extern_crate_alloc"] }
crossbeam-channel = "0.5.13"
divbuf = { git = "https://github.com/asomers/divbuf" }
enum-as-inner = "0.6.0"
fallible-iterator = "0.3.0"
home = "0.5.9"
itertools = "0.13.0"
lagoon = { version = "0.1.3", features = ["scope"] }
nix = { version = "0.29.0", features = ["fs", "socket"] }
num_enum = "0.7.2"
optional_struct = "0.5.2"
rkyv = { version = "0.8.8" }
ron = "0.8.1"
serde = "1.0.203"
serde_derive = "1.0.203"
serde_json = "1.0.117"
smithay = { git = "https://github.com/Smithay/smithay.git", default-features = false, features = [
"desktop",
"xwayland",
"wayland_frontend",
] }
smithay-client-toolkit = { git = "https://github.com/Smithay/client-toolkit.git" }
static_assertions = "1.1.0"
sysctl = "0.6.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["parking_lot"] }
tracing-tracy = { version = "0.11.0", optional = true, features = [
"only-localhost",
"ondemand",
] }
tracy-client = { version = "0.17.0", optional = true, features = [
"only-localhost",
"ondemand",
] }
whoami = "1.5.1"
x11rb = "0.13.1"
zstd = { version = "0.13.1" }
[build-dependencies]
merkle_hash = "3.6.1"
[features]
# Enables exporting data to the Tracy profiler.
# NOTE: opens a port on localhost.
# NOTE: breaks client reconnection due to sigpipe handling.
tracy = ["dep:tracy-client", "dep:tracing-tracy"]
# Enables memory allocation tracking for tracy. NOTE: severely decreases
# allocation performance.
tracy-allocator = ["tracy"]
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
png = "0.17.13"
proptest = "1.4.0"
trybuild = "1.0.96"
[[bench]]
name = "prefix_sum"
harness = false
# TODO: Fix bench
# [[bench]]
# name = "image_compression"
# harness = false
[[bench]]
name = "serialize"
harness = false