Files
qdrant/lib/gridstore/Cargo.toml
dependabot[bot] 063b2c0ad4 build(deps): bump lz4_flex from 0.13.0 to 0.13.1 (#9004)
Bumps [lz4_flex](https://github.com/pseitz/lz4_flex) from 0.13.0 to 0.13.1.
- [Release notes](https://github.com/pseitz/lz4_flex/releases)
- [Changelog](https://github.com/PSeitz/lz4_flex/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pseitz/lz4_flex/commits)

---
updated-dependencies:
- dependency-name: lz4_flex
  dependency-version: 0.13.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-22 10:35:12 +02:00

62 lines
1.3 KiB
TOML

[package]
name = "gridstore"
version = "0.1.0"
authors = ["Qdrant Team <info@qdrant.tech>"]
license = "Apache-2.0"
edition = "2024"
publish = false
[lints]
workspace = true
[dependencies]
ahash = { workspace = true }
bytemuck = { workspace = true }
ecow = { workspace = true }
fs-err = { workspace = true }
serde_cbor = { workspace = true }
serde_json = { workspace = true }
serde = { workspace = true }
smallvec = { workspace = true }
parking_lot = { workspace = true }
tempfile = { workspace = true }
thiserror = { workspace = true }
lz4_flex = { version = "0.13.1", default-features = false }
log = { workspace = true }
rand = { workspace = true }
bitvec = { workspace = true }
itertools = { workspace = true }
zerocopy = { workspace = true }
dataset = { path = "../common/dataset" }
common = { path = "../common/common" }
[dev-dependencies]
criterion = { workspace = true }
csv = "1.4.0"
fs-err = { workspace = true, features = ["debug"] }
rstest = { workspace = true }
proptest = { workspace = true }
bustle = "0.5.1"
common = { path = "../common/common", features = ["testing"] }
env_logger = { workspace = true }
[[bench]]
name = "random_data_bench"
harness = false
[[bench]]
name = "real_data_bench"
harness = false
[[bench]]
name = "bitmask_bench"
harness = false
[[bench]]
name = "bustle_bench"
harness = false
[[bench]]
name = "flush_bench"
harness = false