[package]
edition = "2024"
name = "aedb"
version = "0.1.9"
build = false
exclude = [
"*.docx",
"artifacts/*",
".claude/*",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded Rust storage engine with transactional commits, WAL durability, and snapshot-consistent reads"
homepage = "https://github.com/empyrealapp/aedb"
documentation = "https://docs.rs/aedb"
readme = "README.md"
keywords = [
"database",
"storage",
"wal",
"embedded",
"transactional",
]
categories = [
"database-implementations",
"embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/empyrealapp/aedb"
resolver = "2"
[lib]
name = "aedb"
path = "src/lib.rs"
[[bin]]
name = "aedb"
path = "src/bin/aedb.rs"
[[test]]
name = "accumulator_native"
path = "tests/accumulator_native.rs"
[[test]]
name = "adversarial_contention"
path = "tests/adversarial_contention.rs"
[[test]]
name = "backup_restore"
path = "tests/backup_restore.rs"
[[test]]
name = "benchmark_gate"
path = "tests/benchmark_gate.rs"
[[test]]
name = "cas_helpers"
path = "tests/cas_helpers.rs"
[[test]]
name = "casino_betting_races"
path = "tests/casino_betting_races.rs"
[[test]]
name = "casino_double_spend"
path = "tests/casino_double_spend.rs"
[[test]]
name = "casino_settlement"
path = "tests/casino_settlement.rs"
[[test]]
name = "crash_matrix"
path = "tests/crash_matrix.rs"
[[test]]
name = "declarative_schema"
path = "tests/declarative_schema.rs"
[[test]]
name = "engine_interface"
path = "tests/engine_interface.rs"
[[test]]
name = "kv_projection"
path = "tests/kv_projection.rs"
[[test]]
name = "kv_updates_preflight"
path = "tests/kv_updates_preflight.rs"
[[test]]
name = "mutate_returning_claim"
path = "tests/mutate_returning_claim.rs"
[[test]]
name = "naming_conventions"
path = "tests/naming_conventions.rs"
[[test]]
name = "offline_tools"
path = "tests/offline_tools.rs"
[[test]]
name = "order_book_native"
path = "tests/order_book_native.rs"
[[test]]
name = "order_book_simulation"
path = "tests/order_book_simulation.rs"
[[test]]
name = "predicate_ops"
path = "tests/predicate_ops.rs"
[[test]]
name = "query_core_operations"
path = "tests/query_core_operations.rs"
[[test]]
name = "query_integration"
path = "tests/query_integration.rs"
[[test]]
name = "read_assertions"
path = "tests/read_assertions.rs"
[[test]]
name = "repository_example"
path = "tests/repository_example.rs"
[[test]]
name = "repository_helpers"
path = "tests/repository_helpers.rs"
[[test]]
name = "security_boundaries"
path = "tests/security_boundaries.rs"
[[test]]
name = "security_properties"
path = "tests/security_properties.rs"
[[test]]
name = "security_properties_proptest"
path = "tests/security_properties_proptest.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "table_u256_atomic"
path = "tests/table_u256_atomic.rs"
[[test]]
name = "wal_frame_robustness"
path = "tests/wal_frame_robustness.rs"
[[bench]]
name = "perf"
path = "benches/perf.rs"
harness = false
[dependencies.aes-gcm]
version = "0.10"
[dependencies.blake3]
version = "1"
[dependencies.bytes]
version = "1"
[dependencies.compact_str]
version = "0.8"
features = ["serde"]
[dependencies.crc32c]
version = "0.6"
[dependencies.crossbeam]
version = "0.8"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.im]
version = "15"
features = ["serde"]
[dependencies.memmap2]
version = "0.9"
[dependencies.once_cell]
version = "1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.primitive-types]
version = "0.12"
[dependencies.rmp-serde]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_bytes]
version = "0.11"
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.smallvec]
version = "1"
features = ["serde"]
[dependencies.subtle]
version = "2"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dependencies.zeroize]
version = "1"
features = ["zeroize_derive"]
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.rand]
version = "0.8"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"test-util",
"macros",
]