-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathCargo.toml
34 lines (31 loc) · 919 Bytes
/
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
[workspace]
members = ["crates/*", "test_bin", "bench_bin"]
default-members = ["crates/*", "test_bin", "bench_bin"]
resolver = "2"
[workspace.package]
version = "0.10.15"
edition = "2024"
[profile.release]
lto = "thin"
opt-level = 3
codegen-units = 1
[workspace.dependencies]
ahash = { version = "0.8.11", default-features = false }
chrono = { version = "0.4.40" }
futures = "0.3.30"
hashbrown = "0.14.5"
parking_lot = "0.12"
rand = "0.9.1"
rayon = "1.10.0"
num_cpus = "1.16.0"
tokio = { version = "1.44.2", default-features = false }
tracing = { version = "0.1.40", default-features = false }
regex = "1.10.5"
url = "2.5.1"
serde = { version = "1.0.219", features = ["derive", "rc"] }
serde_json = { version = "1.0", features = ["std"] }
bytes = "1.10.0"
uuid = { version = "1.16.0", features = ["v4"] }
scc = "2.3.4"
half = { version = "2.6.0", features = ["num-traits", "serde"] }
getrandom = { version = "0.3" }