mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-31 15:11:35 -05:00
Bumps [ordered-float](https://github.com/reem/rust-ordered-float) from 4.2.2 to 4.3.0. - [Release notes](https://github.com/reem/rust-ordered-float/releases) - [Commits](https://github.com/reem/rust-ordered-float/compare/v4.2.2...v4.3.0) --- updated-dependencies: - dependency-name: ordered-float dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47 lines
1.0 KiB
TOML
47 lines
1.0 KiB
TOML
[package]
|
|
name = "sparse"
|
|
version = "0.1.0"
|
|
authors = [
|
|
"Andrey Vasnetsov <andrey@vasnetsov.com>",
|
|
"Qdrant Team <info@qdrant.tech>",
|
|
]
|
|
license = "Apache-2.0"
|
|
edition = "2021"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
testing = []
|
|
|
|
[dependencies]
|
|
bitpacking = "0.9.2"
|
|
common = { path = "../common/common" }
|
|
half = { workspace = true }
|
|
io = { path = "../common/io" }
|
|
memory = { path = "../common/memory" }
|
|
memmap2 = { workspace = true }
|
|
schemars = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
ordered-float = "4.3"
|
|
rand = { workspace = true }
|
|
validator = { workspace = true }
|
|
itertools = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
dataset = { path = "../common/dataset" }
|
|
generic-tests = { workspace = true }
|
|
indicatif = { workspace = true }
|
|
sparse = { path = ".", features = ["testing"] }
|
|
|
|
[target.'cfg(not(target_os = "windows"))'.dev-dependencies]
|
|
pprof = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "search"
|
|
harness = false
|