[package]
edition = "2021"
name = "azoth"
version = "0.1.3"
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"
[features]
default = []
onchain = [
"alloy-primitives",
"alloy-provider",
"alloy-rpc-types",
"alloy-signer",
"alloy-signer-local",
"alloy-sol-types",
"alloy-transport-http",
]
[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 = "circuit_breaker"
path = "examples/circuit_breaker.rs"
[[example]]
name = "continuous_processor"
path = "examples/continuous_processor.rs"
[[example]]
name = "custom_errors"
path = "examples/custom_errors.rs"
[[example]]
name = "custom_storage"
path = "examples/custom_storage.rs"
[[example]]
name = "dlq_replay"
path = "examples/dlq_replay.rs"
[[example]]
name = "event_handlers"
path = "examples/event_handlers.rs"
[[example]]
name = "event_processor_builder"
path = "examples/event_processor_builder.rs"
[[example]]
name = "incremental_backup"
path = "examples/incremental_backup.rs"
[[example]]
name = "lambda_require"
path = "examples/lambda_require.rs"
[[example]]
name = "lock_based_preflight"
path = "examples/lock_based_preflight.rs"
[[example]]
name = "migration_example"
path = "examples/migration_example.rs"
required-features = []
[[example]]
name = "shutdown_checkpoint"
path = "examples/shutdown_checkpoint.rs"
[[test]]
name = "concurrency_safety_test"
path = "tests/concurrency_safety_test.rs"
[[test]]
name = "encryption_compression_test"
path = "tests/encryption_compression_test.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 = "preflight_cache_test"
path = "tests/preflight_cache_test.rs"
[[test]]
name = "stress_test"
path = "tests/stress_test.rs"
[[bench]]
name = "basic_benchmark"
path = "benches/basic_benchmark.rs"
harness = false
[[bench]]
name = "preflight_cache_benchmark"
path = "benches/preflight_cache_benchmark.rs"
harness = false
[[bench]]
name = "transaction_throughput"
path = "benches/transaction_throughput.rs"
harness = false
[dependencies.age]
version = "0.10"
[dependencies.alloy-primitives]
version = "0.8"
optional = true
[dependencies.alloy-provider]
version = "0.6"
features = ["reqwest"]
optional = true
[dependencies.alloy-rpc-types]
version = "0.6"
optional = true
[dependencies.alloy-signer]
version = "0.6"
optional = true
[dependencies.alloy-signer-local]
version = "0.6"
optional = true
[dependencies.alloy-sol-types]
version = "0.8"
optional = true
[dependencies.alloy-transport-http]
version = "0.6"
optional = true
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.azoth-core]
version = "0.1.1"
[dependencies.azoth-file-log]
version = "0.1.1"
[dependencies.azoth-lmdb]
version = "0.1.1"
[dependencies.azoth-projector]
version = "0.1.1"
[dependencies.azoth-sqlite]
version = "0.1.1"
[dependencies.bincode]
version = "1.3"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"multipart",
]
[dependencies.rmp-serde]
version = "1.3"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt",
"sync",
"macros",
]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"serde",
]
[dependencies.walkdir]
version = "2.4"
[dependencies.zstd]
version = "0.13"
[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",
"signal",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]