-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 783 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (35 loc) · 783 Bytes
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 = "lob"
version = "0.1.0"
edition = "2024"
[profile.release]
debug = true
[dev-dependencies]
criterion = "0.8.2"
serde_json = "1"
[[bench]]
name = "lob_bench"
harness = false
[dependencies]
thiserror = "2.0.18"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
rustc-hash = "2.0.0"
proptest = "1.0"
slab = "0.4.12"
bincode = "2.0.0"
axum = { version = "0.8.9", features = ["ws"] }
tokio = { version = "1.52.3", features = ["full"] }
uuid = { version = "1.23.1", features = ["v4"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.20", features = [
"env-filter",
"json",
"fmt",
] }
tracing-appender = "0.2"
bytes = "1.11.1"
hmac = "0.12"
sha2 = "0.10"
base64 = "0.22"
tower-http = { version = "0.6", features = ["cors"] }