aurora-db 5.0.1

A lightweight, real-time embedded database with built-in PubSub, reactive queries, background workers, and intelligent caching.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "aurora-db"
version = "5.0.1"
authors = ["Bethel Nzekea <bethelnzekea@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, real-time embedded database with built-in PubSub, reactive queries, background workers, and intelligent caching."
homepage = "https://github.com/bethel-nz/aurora"
readme = "README.md"
keywords = [
    "database",
    "embedded",
    "realtime",
    "pubsub",
    "reactive",
]
categories = [
    "database",
    "caching",
]
license = "MIT"
repository = "https://github.com/bethel-nz/aurora"

[features]
binary = []
compression = []
default = []
full = [
    "binary",
    "http",
]
full-text-search = []
http = ["dep:actix-web"]

[lib]
name = "aurora_db"
path = "src/lib.rs"

[[bin]]
name = "aurora-db"
path = "src/main.rs"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "aurora_benchmarks"
path = "benches/aurora_benchmarks.rs"
harness = false

[[bench]]
name = "baseline_benchmark"
path = "benches/baseline_benchmark.rs"
harness = false

[dependencies.actix-web]
version = "4.11.0"
optional = true

[dependencies.anyhow]
version = "1.0"

[dependencies.async-stream]
version = "0.3"

[dependencies.base64]
version = "0.22"

[dependencies.bincode]
version = "1.3"

[dependencies.bumpalo]
version = "3.16"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.color-eyre]
version = "0.6"

[dependencies.criterion]
version = "0.5.1"

[dependencies.csv]
version = "1.1"

[dependencies.dashmap]
version = "5.3.4"

[dependencies.fst]
version = "0.4"
features = ["levenshtein"]

[dependencies.futures]
version = "0.3"

[dependencies.moka]
version = "0.12"
features = [
    "future",
    "sync",
]

[dependencies.ndarray]
version = "0.16"

[dependencies.pest]
version = "2.7.15"

[dependencies.pest_derive]
version = "2.7.15"

[dependencies.quote]
version = "1.0"

[dependencies.regex]
version = "1.11.1"

[dependencies.rhai]
version = "1.19"
features = [
    "serde",
    "metadata",
    "sync",
]

[dependencies.rkyv]
version = "0.7.46"
features = [
    "validation",
    "uuid",
]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.sled]
version = "0.34.7"

[dependencies.tempfile]
version = "3.3.0"

[dependencies.tokio]
version = "1.18.2"
features = ["full"]

[dependencies.unicode-segmentation]
version = "1.10.0"

[dependencies.uuid]
version = "1.0"
features = [
    "v4",
    "v7",
    "serde",
]

[dependencies.zip]
version = "0.6.2"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.rusqlite]
version = "0.30"

[dev-dependencies.tempfile]
version = "3.3.0"

[dev-dependencies.tokio-test]
version = "0.4"

[profile.dev]
debug = 1
split-debuginfo = "unpacked"

[profile.dev.package."*"]
opt-level = 0
debug = 0
strip = "debuginfo"

[profile.test]
debug = 1
incremental = true