[[bench]]
harness = false
name = "performance"
path = "benches/performance.rs"
[build-dependencies.cbindgen]
version = "0.26"
[dependencies.dashmap]
version = "6.0"
[dependencies.js-sys]
optional = true
version = "0.3"
[dependencies.lru]
version = "0.16"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde-wasm-bindgen]
optional = true
version = "0.6"
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.wasm-bindgen]
optional = true
version = "0.2"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.petgraph]
version = "0.6"
[dev-dependencies.proptest]
version = "1.0"
[dev-dependencies.rand]
version = "0.8"
[[example]]
name = "concurrent_synthesis"
path = "examples/concurrent_synthesis.rs"
[features]
default = []
wasm = ["wasm-bindgen", "serde-wasm-bindgen", "js-sys"]
[lib]
crate-type = ["cdylib", "staticlib", "rlib"]
name = "koru_lambda_core"
path = "src/lib.rs"
[package]
authors = ["Sawyer Kent <sawyerkent.me@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
categories = ["algorithms", "wasm"]
description = "A minimal axiomatic system for distributed computation"
edition = "2021"
keywords = ["distributed", "consensus", "wasm", "deterministic"]
license = "MIT OR Apache-2.0"
name = "koru-lambda-core"
readme = "README.md"
repository = "https://github.com/swyrknt/koru-lambda-core"
version = "1.0.1"
[[test]]
name = "commitment_e2e"
path = "tests/commitment_e2e.rs"
[[test]]
name = "end_to_end"
path = "tests/end_to_end.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "parallel_integration"
path = "tests/parallel_integration.rs"
[[test]]
name = "performance_validation"
path = "tests/performance_validation.rs"
[[test]]
name = "throughput_verification"
path = "tests/throughput_verification.rs"