mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-05-15 13:52:31 +00:00
40 lines
930 B
TOML
40 lines
930 B
TOML
[package]
|
|
name = "libsql-wal"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
arc-swap = "1.7.1"
|
|
bytes = "1.6.0"
|
|
crossbeam = "0.8.4"
|
|
fst = "0.4.7"
|
|
hashbrown = "0.14.3"
|
|
libsql-sys = { path = "../libsql-sys", features = ["rusqlite"] }
|
|
memmap = "0.7.0"
|
|
memoffset = "0.9.1"
|
|
mmap = "0.1.1"
|
|
nix = { version = "0.28.0", features = ["uio", "fs"] }
|
|
parking_lot = "0.12.1"
|
|
thiserror = "1.0.58"
|
|
tokio = { version = "1.36.0", features = ["full"] }
|
|
tracing = "0.1.40"
|
|
tracing-flame = "0.2.0"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "time"] }
|
|
walkdir = "2.5.0"
|
|
zerocopy = { version = "0.7.32", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5.1"
|
|
hex = "0.4.3"
|
|
once_cell = "1.19.0"
|
|
rand = "0.8.5"
|
|
rand_chacha = "0.3.1"
|
|
regex = "1.10.4"
|
|
tempfile = "3.10.1"
|
|
|
|
[[bench]]
|
|
name = "benchmarks"
|
|
harness = false
|