[package]
edition = "2021"
rust-version = "1.81.0"
name = "synadb"
version = "1.1.1"
authors = ["gtava5813"]
build = false
exclude = [
"demos/",
"assets/",
"website/",
"wiki/",
"benchmarks/",
"files/",
"syna-cli/",
".github/",
"*.db",
"*.txt",
"READMEv0.1.0.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An AI-native embedded database"
homepage = "https://synadb.ai"
documentation = "https://docs.rs/synadb"
readme = "README.md"
keywords = [
"database",
"embedded",
"ai",
"ml",
"tensor",
]
categories = [
"database",
"data-structures",
"science",
]
license = "LicenseRef-SynaDB"
repository = "https://github.com/gtava5813/SynaDB"
[features]
async = ["tokio"]
default = []
faiss = ["dep:faiss"]
faiss-gpu = ["faiss"]
gpu = []
[lib]
name = "synadb"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[test]]
name = "arch_benchmark"
path = "tests/arch_benchmark.rs"
[[test]]
name = "atom_roundtrip"
path = "tests/atom_roundtrip.rs"
[[test]]
name = "cascade_search"
path = "tests/cascade_search.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 = "gwi_persistence"
path = "tests/gwi_persistence.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 = "sparse_ffi"
path = "tests/sparse_ffi.rs"
[[test]]
name = "sparse_persistence"
path = "tests/sparse_persistence.rs"
[[test]]
name = "sparse_roundtrip"
path = "tests/sparse_roundtrip.rs"
[[test]]
name = "sparse_store_search"
path = "tests/sparse_store_search.rs"
[[test]]
name = "sparse_vector_roundtrip"
path = "tests/sparse_vector_roundtrip.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"
[dependencies.bincode]
version = "1.3"
[dependencies.faiss]
version = "0.12"
optional = true
[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.rand]
version = "0.8"
[dependencies.rand_distr]
version = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = [
"fs",
"rt-multi-thread",
"macros",
"io-util",
]
optional = true
[dependencies.uuid]
version = "1.8"
features = ["v4"]
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"