[package]
edition = "2021"
name = "azoth"
version = "0.1.0"
authors = ["johnny@empyrealsdk.com"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance embedded database for state management and event sourcing with ACID guarantees"
homepage = "https://github.com/empyrealapp/azoth"
documentation = "https://docs.rs/azoth"
readme = "README.md"
keywords = [
"database",
"event-sourcing",
"embedded",
"kv-store",
"lmdb",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT"
repository = "https://github.com/empyrealapp/azoth"
[lib]
name = "azoth"
path = "src/lib.rs"
[[example]]
name = "backup_restore"
path = "examples/backup_restore.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "batch_processing"
path = "examples/batch_processing.rs"
[[example]]
name = "continuous_processor"
path = "examples/continuous_processor.rs"
[[example]]
name = "custom_errors"
path = "examples/custom_errors.rs"
[[example]]
name = "event_handlers"
path = "examples/event_handlers.rs"
[[example]]
name = "event_processor_builder"
path = "examples/event_processor_builder.rs"
[[example]]
name = "lambda_require"
path = "examples/lambda_require.rs"
[[example]]
name = "lock_based_preflight"
path = "examples/lock_based_preflight.rs"
[[test]]
name = "event_handler_test"
path = "tests/event_handler_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "migration_test"
path = "tests/migration_test.rs"
[[test]]
name = "stress_test"
path = "tests/stress_test.rs"
[[bench]]
name = "basic_benchmark"
path = "benches/basic_benchmark.rs"
harness = false
[[bench]]
name = "transaction_throughput"
path = "benches/transaction_throughput.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.azoth-core]
version = "0.1.0"
[dependencies.azoth-file-log]
version = "0.1.0"
[dependencies.azoth-lmdb]
version = "0.1.0"
[dependencies.azoth-projector]
version = "0.1.0"
[dependencies.azoth-sqlite]
version = "0.1.0"
[dependencies.bincode]
version = "1.3"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt",
"sync",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.parking_lot]
version = "0.12"
[dev-dependencies.tempfile]
version = "3.0"
[dev-dependencies.tokio]
version = "1.0"
features = [
"rt",
"sync",
"macros",
"rt-multi-thread",
"macros",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]