[dependencies.bincode]
version = "1.3"
[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.uuid]
features = ["v4"]
version = "1.8"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.tempfile]
version = "3.10"
[lib]
crate-type = ["cdylib", "rlib"]
name = "synadb"
path = "src/lib.rs"
[package]
authors = ["gtava5813"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["database", "data-structures", "science"]
description = "An AI-native embedded database"
documentation = "https://docs.rs/synadb"
edition = "2021"
homepage = "https://github.com/gtava5813/SynaDB"
keywords = ["database", "embedded", "ai", "ml", "tensor"]
license = "MIT"
name = "synadb"
readme = "README.md"
repository = "https://github.com/gtava5813/SynaDB"
rust-version = "1.81.0"
version = "0.2.0"
[[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 = "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"