mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-26 20:51:08 -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>
59 lines
1.1 KiB
TOML
59 lines
1.1 KiB
TOML
[package]
|
|
name = "quantization"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Andrey Vasnetsov <vasnetsov93@gmail.com>",
|
|
"Qdrant Team <info@qdrant.tech>",
|
|
]
|
|
license = "Apache-2.0"
|
|
edition = "2024"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
testing = ["common/testing"]
|
|
|
|
[build-dependencies]
|
|
cc = { workspace = true }
|
|
|
|
[dependencies]
|
|
fs-err = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
permutation_iterator = "0.1.2"
|
|
rand = { workspace = true }
|
|
rayon = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
common = { path = "../common/common" }
|
|
strum = { workspace = true }
|
|
bytemuck = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
ordered-float = { workspace = true }
|
|
arrayvec = "0.7.6"
|
|
|
|
[dev-dependencies]
|
|
fs-err = { workspace = true, features = ["debug"] }
|
|
quantization = { path = ".", features = ["testing"] }
|
|
criterion = { workspace = true }
|
|
num_threads = "0.1.7"
|
|
rand_distr = { workspace = true }
|
|
rstest = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "encode"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "pq"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "binary"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "p_square"
|
|
harness = false
|