mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-23 11:11:00 -05:00
Bump minimum version requirements to match what Cargo.lock already resolved to. No functional change — these versions were already being used at build time. - ahash: 0.8.11 -> 0.8.12 - charabia: 0.9.7 -> 0.9.9 - chrono: 0.4.43 -> 0.4.44 - config: 0.15.13 -> 0.15.22 - crc: 3.3.0 -> 3.4.0 - fs-err: 3.2.2 -> 3.3.0 - futures-util: 0.3.31 -> 0.3.32 - num_threads: 0.1.6 -> 0.1.7 - quickcheck: 1.0.3 -> 1.1.0 - regex: 1.11.3 -> 1.12.3 - rustls: 0.23.35 -> 0.23.37 - rustls-pki-types: 1.12.0 -> 1.14.0 - slog: 2.7.0 -> 2.8.2 - tokio: 1.49.0 -> 1.50.0 - tower: 0.5.2 -> 0.5.3 Made-with: Cursor Co-authored-by: Cursor Agent <agent@cursor.com>
46 lines
1003 B
TOML
46 lines
1003 B
TOML
[package]
|
|
name = "wal"
|
|
version = "0.1.4"
|
|
authors = [
|
|
"Dan Burkert <dan@danburkert.com>",
|
|
"Andrey Vasnetsov <andrey@vasnetsov.com>",
|
|
"Qdrant Team <info@qdrant.tech>",
|
|
]
|
|
license = "Apache-2.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
byteorder = { workspace = true }
|
|
crc32c = "0.6.8"
|
|
fs4 = { workspace = true }
|
|
fs-err = { workspace = true }
|
|
log = { workspace = true }
|
|
memmap2 = { workspace = true }
|
|
rand = { workspace = true }
|
|
rand_distr = { workspace = true }
|
|
# fs4 depends on rustix, but pulling this dependency explicitly into the tree
|
|
# to use direct functions on FreeBSD
|
|
rustix = { version = "1", features = ["fs"] }
|
|
|
|
# Binary dependencies
|
|
docopt = "1.1"
|
|
env_logger = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
chrono = { workspace = true }
|
|
crc = "3.4.0"
|
|
criterion = { workspace = true }
|
|
hdrhistogram = "7.5.4"
|
|
quickcheck = "1.1.0"
|
|
regex = "1.12.3"
|
|
tempfile = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|