mirror of
https://github.com/qdrant/qdrant.git
synced 2026-08-05 01:20:53 -05:00
* make mmap_type independent from segment structures * make bitvec and thiserror workspace dependencies * move mmap_type into common/memory subcrate * fmt
25 lines
506 B
TOML
25 lines
506 B
TOML
[package]
|
|
name = "memory"
|
|
version = "0.0.0"
|
|
authors = [
|
|
"Andrey Vasnetsov <vasnetsov93@gmail.com>",
|
|
"Qdrant Team <info@qdrant.tech>",
|
|
]
|
|
license = "Apache-2.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
memmap2 = { workspace = true }
|
|
log = { workspace = true }
|
|
parking_lot = { workspace = true }
|
|
serde = { workspace = true }
|
|
bitvec = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
rand = { workspace = true }
|
|
tempfile = { workspace = true } |