-
Notifications
You must be signed in to change notification settings - Fork 42
/
Cargo.toml
36 lines (33 loc) · 949 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
35
36
[workspace]
members = ["crates/*", "test_bin", "bench_bin"]
default-members = ["crates/*", "test_bin", "bench_bin"]
resolver = "2"
[workspace.package]
version = "0.0.93"
edition = "2021"
[profile.release]
lto = "thin"
opt-level = 3
codegen-units = 1
[workspace.dependencies]
ahash = { version = "0.8.11", default-features = false }
chrono = { version = "0.4.39" }
futures = "0.3.30"
hashbrown = "0.14.5"
once_cell = "1.19.0"
parking_lot = "0.12"
rand = "0.8.5"
smallvec = "1.13.2"
rayon = "1.10.0"
num_cpus = "1.16.0"
tokio = { version = "1.42.0", default-features = false }
tracing = { version = "0.1.40", default-features = false }
regex = "1.10.5"
url = "2.5.1"
serde = { version = "1.0.216", features = ["derive", "rc"] }
erased-serde = "0.4.5"
serde_json = { version = "1.0", features = ["std"] }
bytes = "1.6.0"
uuid = { version = "1.10.0", features = ["v4"] }
scc = "2.2.6"
half = { version = "2.4.1", features = ["num-traits", "serde"] }