[package]
edition = "2021"
name = "entdb"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust-based SQL database engine core for EntDB."
homepage = "https://github.com/nssalian/entdb"
documentation = "https://docs.rs/entdb"
readme = "README.md"
keywords = [
"database",
"sql",
"storage",
"mvcc",
"wal",
]
categories = ["database-implementations"]
license = "Apache-2.0"
repository = "https://github.com/nssalian/entdb"
[lib]
name = "entdb"
path = "src/lib.rs"
[[example]]
name = "embedded_connect"
path = "examples/embedded_connect.rs"
[[test]]
name = "bm25_reliability_tests"
path = "tests/bm25_reliability_tests.rs"
[[test]]
name = "bm25_sidecar_tests"
path = "tests/bm25_sidecar_tests.rs"
[[test]]
name = "bm25_tests"
path = "tests/bm25_tests.rs"
[[test]]
name = "btree_crash_matrix_broad"
path = "tests/btree_crash_matrix_broad.rs"
[[test]]
name = "btree_crashpoint_tests"
path = "tests/btree_crashpoint_tests.rs"
[[test]]
name = "connect_api_tests"
path = "tests/connect_api_tests.rs"
[[test]]
name = "crash_matrix"
path = "tests/crash_matrix.rs"
[[test]]
name = "crash_matrix_extended"
path = "tests/crash_matrix_extended.rs"
[[test]]
name = "docs_examples"
path = "tests/docs_examples.rs"
[[test]]
name = "fault_injection"
path = "tests/fault_injection.rs"
[[test]]
name = "mvcc_recovery_matrix"
path = "tests/mvcc_recovery_matrix.rs"
[[test]]
name = "mvcc_stress_query"
path = "tests/mvcc_stress_query.rs"
[[test]]
name = "perf_regression"
path = "tests/perf_regression.rs"
[[test]]
name = "recovery_failpoint_matrix"
path = "tests/recovery_failpoint_matrix.rs"
[[test]]
name = "recovery_failpoint_scale"
path = "tests/recovery_failpoint_scale.rs"
[[test]]
name = "stress_storage"
path = "tests/stress_storage.rs"
[[test]]
name = "stress_wal"
path = "tests/stress_wal.rs"
[[test]]
name = "vector_tests"
path = "tests/vector_tests.rs"
[[bench]]
name = "comparative_bench"
path = "benches/comparative_bench.rs"
harness = false
[[bench]]
name = "core_bench"
path = "benches/core_bench.rs"
harness = false
[[bench]]
name = "workload_bench"
path = "benches/workload_bench.rs"
harness = false
[dependencies.crc32fast]
version = "1.4"
[dependencies.parking_lot]
version = "0.12"
[dependencies.polyglot-sql]
version = "0.1.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlparser]
version = "0.55"
[dependencies.thiserror]
version = "2.0"
[dependencies.time]
version = "0.3"
features = ["parsing"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dev-dependencies.tempfile]
version = "3.14"