vecdb 0.5.1

High-performance mutable persistent vectors built on rawdb
Documentation
[dependencies.ctrlc]
features = ["termination"]
version = "3.5.1"

[dependencies.log]
version = "0.4.29"

[dependencies.lz4_flex]
default-features = false
optional = true
version = "0.12.0"

[dependencies.parking_lot]
version = "0.12.5"

[dependencies.pco]
optional = true
version = "0.4.8"

[dependencies.rawdb]
version = "0.5.1"

[dependencies.schemars]
optional = true
version = "1.2.0"

[dependencies.serde]
optional = true
version = "1.0.228"

[dependencies.serde_json]
features = ["float_roundtrip"]
optional = true
version = "1.0.148"

[dependencies.sonic-rs]
optional = true
version = "0.5.6"

[dependencies.thiserror]
version = "2"

[dependencies.vecdb_derive]
optional = true
version = "0.5.1"

[dependencies.zerocopy]
features = ["zerocopy-derive"]
optional = true
version = "0.8.31"

[dependencies.zstd]
optional = true
version = "0.13.3"

[dev-dependencies.sha2]
version = "0.10"

[dev-dependencies.tempfile]
version = "3.24.0"

[dev-dependencies.walkdir]
version = "2.5"

[[example]]
name = "pcodec"
path = "examples/pcodec.rs"
required-features = ["pco"]

[[example]]
name = "zerocopy"
path = "examples/zerocopy.rs"
required-features = ["zerocopy"]

[features]
derive = ["vecdb_derive"]
lz4 = ["dep:lz4_flex"]
pco = ["dep:pco"]
schemars = ["dep:schemars"]
serde = ["dep:serde"]
serde_json = ["serde", "dep:serde_json"]
sonic-rs = ["serde", "dep:sonic-rs"]
zerocopy = ["dep:zerocopy"]
zstd = ["dep:zstd"]

[lib]
name = "vecdb"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["database"]
description = "High-performance mutable persistent vectors built on rawdb"
edition = "2024"
homepage = "https://github.com/anydb-rs/anydb"
keywords = ["vec", "disk", "database"]
license = "MIT"
name = "vecdb"
readme = "README.md"
repository = "https://github.com/anydb-rs/anydb"
version = "0.5.1"

[package.metadata.docs.rs]
all-features = true

[[test]]
name = "basic"
path = "tests/basic.rs"

[[test]]
name = "basic2"
path = "tests/basic2.rs"

[[test]]
name = "comprehensive"
path = "tests/comprehensive.rs"

[[test]]
name = "compute_functions"
path = "tests/compute_functions.rs"

[[test]]
name = "concurrent_rw"
path = "tests/concurrent_rw.rs"

[[test]]
name = "consistency"
path = "tests/consistency.rs"

[[test]]
name = "integrity"
path = "tests/integrity.rs"

[[test]]
name = "iterators"
path = "tests/iterators.rs"

[[test]]
name = "rollback"
path = "tests/rollback.rs"

[[test]]
name = "scaling_bench"
path = "tests/scaling_bench.rs"

[[test]]
name = "write_visibility"
path = "tests/write_visibility.rs"