[dependencies.bincode]
version = "1.3"
[dependencies.faiss]
optional = true
version = "0.12"
[dependencies.libc]
version = "0.2"
[dependencies.lz4_flex]
version = "0.11"
[dependencies.memmap2]
version = "0.9"
[dependencies.once_cell]
version = "1.18"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
features = ["fs", "rt-multi-thread", "macros", "io-util"]
optional = true
version = "1.0"
[dependencies.uuid]
features = ["v4"]
version = "1.8"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"
[features]
async = ["tokio"]
default = []
faiss = ["dep:faiss"]
faiss-gpu = ["faiss"]
gpu = []
[lib]
crate-type = ["cdylib", "rlib"]
name = "synadb"
path = "src/lib.rs"
[package]
authors = ["gtava5813"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "data-structures", "science"]
description = "An AI-native embedded database"
documentation = "https://docs.rs/synadb"
edition = "2021"
exclude = ["demos/", "assets/", "website/", "wiki/", "benchmarks/", "files/", "syna-cli/", ".github/", "*.db", "*.txt", "READMEv0.1.0.md"]
homepage = "https://synadb.ai"
keywords = ["database", "embedded", "ai", "ml", "tensor"]
license = "LicenseRef-SynaDB"
name = "synadb"
readme = "README.md"
repository = "https://github.com/gtava5813/SynaDB"
rust-version = "1.81.0"
version = "1.0.5"
[[test]]
name = "atom_roundtrip"
path = "tests/atom_roundtrip.rs"
[[test]]
name = "compaction"
path = "tests/compaction.rs"
[[test]]
name = "compression"
path = "tests/compression.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "delete_operations"
path = "tests/delete_operations.rs"
[[test]]
name = "experiment_metrics"
path = "tests/experiment_metrics.rs"
[[test]]
name = "faiss_index"
path = "tests/faiss_index.rs"
[[test]]
name = "header_roundtrip"
path = "tests/header_roundtrip.rs"
[[test]]
name = "hnsw_recall"
path = "tests/hnsw_recall.rs"
[[test]]
name = "isolation"
path = "tests/isolation.rs"
[[test]]
name = "memory_leak_test"
path = "tests/memory_leak_test.rs"
[[test]]
name = "model_checksum"
path = "tests/model_checksum.rs"
[[test]]
name = "recovery"
path = "tests/recovery.rs"
[[test]]
name = "schema_free"
path = "tests/schema_free.rs"
[[test]]
name = "stress_test"
path = "tests/stress_test.rs"
[[test]]
name = "tensor"
path = "tests/tensor.rs"
[[test]]
name = "tensor_batch"
path = "tests/tensor_batch.rs"
[[test]]
name = "vector_ffi"
path = "tests/vector_ffi.rs"
[[test]]
name = "vector_roundtrip"
path = "tests/vector_roundtrip.rs"
[[test]]
name = "vector_search"
path = "tests/vector_search.rs"
[[test]]
name = "write_read"
path = "tests/write_read.rs"