synadb 0.1.0

An AI-native embedded database
Documentation
[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.thiserror]
version = "1.0"

[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.1.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 = "header_roundtrip"
path = "tests/header_roundtrip.rs"

[[test]]
name = "isolation"
path = "tests/isolation.rs"

[[test]]
name = "memory_leak_test"
path = "tests/memory_leak_test.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 = "write_read"
path = "tests/write_read.rs"