[package]
edition = "2021"
name = "edgestore"
version = "1.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first embedded KV + vector database in Rust"
homepage = "https://github.com/gleicon/edgestore"
readme = "README.md"
keywords = [
"database",
"kv-store",
"embedded",
"vector",
"ssd",
]
categories = [
"database-implementations",
"data-structures",
"caching",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/gleicon/edgestore"
[lib]
name = "edgestore"
path = "src/lib.rs"
[[example]]
name = "basic_kv"
path = "examples/basic_kv.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "replication"
path = "examples/replication.rs"
[[example]]
name = "vector_search"
path = "examples/vector_search.rs"
[[test]]
name = "integration_compaction"
path = "tests/integration_compaction.rs"
[[test]]
name = "integration_core"
path = "tests/integration_core.rs"
[[test]]
name = "integration_replication"
path = "tests/integration_replication.rs"
[[test]]
name = "integration_segments"
path = "tests/integration_segments.rs"
[[test]]
name = "integration_v1"
path = "tests/integration_v1.rs"
[[test]]
name = "integration_vector"
path = "tests/integration_vector.rs"
[[test]]
name = "phase6_integration"
path = "tests/phase6_integration.rs"
[[test]]
name = "phase7_integration"
path = "tests/phase7_integration.rs"
[[bench]]
name = "hnsw_recall"
path = "benches/hnsw_recall.rs"
harness = false
[[bench]]
name = "text_search"
path = "benches/text_search.rs"
harness = false
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[[bench]]
name = "vector_search"
path = "benches/vector_search.rs"
harness = false
[dependencies.blake3]
version = "1.8"
[dependencies.byteorder]
version = "1.5"
[dependencies.crc32c]
version = "0.6"
[dependencies.fs2]
version = "0.4"
[dependencies.lazy_static]
version = "1"
[dependencies.log]
version = "0.4"
[dependencies.lz4_flex]
version = "0.13"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.wide]
version = "0.7"
[dependencies.xorf]
version = "0.12"
features = ["serde"]
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.rmp-serde]
version = "1"
[dev-dependencies.tempfile]
version = "3"