-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (54 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
56 lines (54 loc) · 1.49 KB
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
[workspace]
members = [
"crates/bye-event",
"crates/bye-kernel",
"crates/bye-dom",
"crates/bye-net",
"crates/bye-loader",
"crates/bye-js",
"crates/bye-render",
"crates/bye-storage",
"crates/bye-layout",
"crates/bye-safe",
"crates/bye-api",
"crates/bye-vision",
"crates/bye-compositor",
"crates/bye-audit",
"crates/bye-evolve",
"bin/byefast",
"tests",
]
resolver = "2"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
bincode = "1"
bytes = "1"
uuid = { version = "1", features = ["v4", "serde"] }
thiserror = "1"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
parking_lot = "0.12"
dashmap = "6"
reqwest = { version = "0.12", features = ["http2", "rustls-tls", "rustls-tls-webpki-roots", "stream", "json", "brotli", "deflate", "gzip"] }
url = "2"
axum = { version = "0.7", features = ["ws"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "trace"] }
sled = "0.34"
rand = "0.8"
ahash = "0.8"
petgraph = "0.6"
chrono = { version = "0.4", features = ["serde"] }
zstd = "0.13"
sha2 = "0.10"
hmac = "0.12"
hex = "0.4"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = "symbols"
panic = "abort"