[package]
name = "sochdb"
version.workspace = true
edition = "2024"
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
keywords.workspace = true
categories.workspace = true
rust-version.workspace = true
description = "SochDB - LLM-optimized database with native vector search"
readme = "README.md"
[dependencies]
sochdb-core = { version = "0.4.3", path = "../sochdb-core", features = ["analytics"] }
sochdb-storage = { version = "0.4.3", path = "../sochdb-storage" }
sochdb-index = { version = "0.4.3", path = "../sochdb-index" }
sochdb-query = { version = "0.4.3", path = "../sochdb-query" }
parking_lot = "0.12"
crossbeam-skiplist = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bincode = "1.3"
byteorder = "1.5"
thiserror = "1.0"
hashbrown = "0.14"
regex = "1.10"
tracing = "0.1"
crc32fast = "1.4"
[dev-dependencies]
tempfile = "3.10"
[features]
default = []
simd = []
embedded = []