[package]
edition = "2024"
name = "koru-delta"
version = "3.0.1"
authors = ["Sawyer Kent <sawyerkent.me@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The invisible database: causal, consistent, and everywhere—without configuration"
readme = "README.md"
keywords = [
"database",
"distributed",
"causal",
"time-travel",
"wasm",
]
categories = [
"database",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/swyrknt/koru-delta"
[features]
default = ["http"]
http = [
"axum",
"tower",
"reqwest",
]
wasm = [
"wasm-bindgen",
"wasm-bindgen-futures",
"serde-wasm-bindgen",
"js-sys",
"web-sys",
"console_error_panic_hook",
"getrandom",
]
[lib]
name = "koru_delta"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "kdelta"
path = "src/bin/kdelta.rs"
[[example]]
name = "alis_ai_integration"
path = "examples/alis_ai_integration.rs"
[[example]]
name = "batch_performance_demo"
path = "examples/batch_performance_demo.rs"
[[example]]
name = "cluster_demo"
path = "examples/cluster_demo.rs"
[[example]]
name = "cluster_e2e_test"
path = "examples/cluster_e2e_test.rs"
[[example]]
name = "complete_validation"
path = "examples/complete_validation.rs"
[[example]]
name = "crisis_coordination_demo"
path = "examples/crisis_coordination_demo.rs"
[[example]]
name = "e2e_validation"
path = "examples/e2e_validation.rs"
[[example]]
name = "ecommerce_demo"
path = "examples/ecommerce_demo.rs"
[[example]]
name = "snsw_demo"
path = "examples/snsw_demo.rs"
[[example]]
name = "stress_test"
path = "examples/stress_test.rs"
[[example]]
name = "taskflow_simulation"
path = "examples/taskflow_simulation.rs"
[[test]]
name = "cluster_falsification_tests"
path = "tests/cluster_falsification_tests.rs"
[[test]]
name = "cluster_tests"
path = "tests/cluster_tests.rs"
[[test]]
name = "falsification_tests"
path = "tests/falsification_tests.rs"
[[test]]
name = "http_api_tests"
path = "tests/http_api_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "lca_integration_tests"
path = "tests/lca_integration_tests.rs"
[[test]]
name = "phase3_tests"
path = "tests/phase3_tests.rs"
[[test]]
name = "phase7_tests"
path = "tests/phase7_tests.rs"
[[test]]
name = "regression_tests"
path = "tests/regression_tests.rs"
[[test]]
name = "vector_tests"
path = "tests/vector_tests.rs"
[[test]]
name = "wasm_tests"
path = "tests/wasm_tests.rs"
[[bench]]
name = "core_operations"
path = "benches/core_operations.rs"
harness = false
[[bench]]
name = "lca_operations"
path = "benches/lca_operations.rs"
[[bench]]
name = "snsw_strengths"
path = "benches/snsw_strengths.rs"
harness = false
[[bench]]
name = "snsw_vs_hnsw"
path = "benches/snsw_vs_hnsw.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
optional = true
[dependencies.bincode]
version = "1.3"
[dependencies.blake3]
version = "1.5"
[dependencies.bs58]
version = "0.5"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"cargo",
]
[dependencies.colored]
version = "2.1"
[dependencies.console_error_panic_hook]
version = "0.1"
optional = true
[dependencies.crc32fast]
version = "1.3"
[dependencies.dashmap]
version = "6.0"
[dependencies.dirs]
version = "5.0"
[dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dependencies.futures]
version = "0.3"
features = [
"std",
"async-await",
]
default-features = false
[dependencies.getrandom]
version = "0.2"
features = ["js"]
optional = true
[dependencies.hex]
version = "0.4"
[dependencies.hkdf]
version = "0.12"
[dependencies.hmac]
version = "0.12"
[dependencies.js-sys]
version = "0.3"
optional = true
[dependencies.koru-lambda-core]
version = "1.2.0"
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
optional = true
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde-wasm-bindgen]
version = "0.6"
optional = true
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.similar]
version = "2.6"
[dependencies.thiserror]
version = "1.0"
[dependencies.tower]
version = "0.4"
optional = true
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1.11"
features = [
"v4",
"serde",
"js",
]
[dependencies.wasm-bindgen]
version = "0.2"
optional = true
[dependencies.wasm-bindgen-futures]
version = "0.4"
optional = true
[dependencies.web-sys]
version = "0.3"
features = [
"Window",
"Performance",
"console",
"DomException",
"DomStringList",
"IdbFactory",
"IdbDatabase",
"IdbObjectStore",
"IdbTransaction",
"IdbRequest",
"IdbOpenDbRequest",
"IdbTransactionMode",
"IdbKeyRange",
"Event",
"EventTarget",
]
optional = true
[dev-dependencies.assert_cmd]
version = "2.0"
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.proptest]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.8"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"fs",
"net",
"io-util",
"sync",
"signal",
"macros",
"time",
]