-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 907 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 907 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
[package]
name = "workingdb"
version = "0.1.0"
edition = "2024"
[dependencies]
blake3 = "1.8.2"
cc = "1.2.20"
crc32fast = "1.4.2"
criterion = "0.5.1"
crossbeam-epoch = "0.9.18"
crossbeam-utils = "0.8.21"
jemalloc-ctl = {version="0.5.4", features=["use_std"]}
libc = "0.2.172"
memmap2 = "0.9.5"
nix = { version = "0.30", features = ["fs"] }
num_cpus = "1.16.0"
pest = "2.8.0"
pest_derive = "2.8.0"
proptest = "1.6.0"
rand = "0.9.1"
tempfile = "3.19.1"
tokio = { version = "1.44.2", features = ["full", "tracing"] }
[profile.release]
opt-level = 3 # Maximum optimizations
debug = false # Strip debug symbols
lto = "fat" # Link-time optimization across crates
codegen-units = 1 # Maximize optimizations over compile time
panic = "abort" # No unwinding, smaller binaries
strip = true # Strip symbols
overflow-checks = false # Assume we know what we're doing 😁😁