-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (42 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
45 lines (42 loc) · 1.19 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
[package]
name = "server-shared"
version = "0.1.0"
edition = "2024"
[dependencies]
capnp = { git = "https://github.com/dankmeme01/capnproto-rust", rev = "dbc9778", default-features = false, features = [
"unaligned",
"std",
"sync_reader",
] }
rustc-hash = "2.1.1"
serde = { version = "1.0.228", features = ["derive"] }
tracing = "0.1.44"
tracing-appender = { version = "0.2.4", features = ["parking_lot"] }
tracing-subscriber = "0.3.22"
toml = "1.0.3"
base64 = "0.22.1"
qunet = { git = "https://github.com/dankmeme01/qunet", rev = "43eef69", default-features = false }
thiserror = "2.0.18"
blake3 = "1.8.3"
heapless = "0.9.2"
hex = "0.4.3"
hmac = "0.12.1"
console-subscriber = { version = "0.5.0", features = [
"parking_lot",
], optional = true }
parking_lot = { version = "0.12.5", features = ["hardware-lock-elision"] }
smallvec = "1.15.1"
validator = { version = "0.20.0", features = ["derive"] }
[build-dependencies]
capnpc = "0.25.0"
[features]
default = []
main = []
game = []
srvc = []
all = ["main", "game", "srvc", "quic", "websocket"]
quic = ["qunet/quic"]
websocket = ["qunet/websocket"]
qunet-client = ["qunet/client"]
tokio_tracing = ["dep:console-subscriber"]
dyn-encoding = ["capnp/alloc"]