[package]
edition = "2021"
rust-version = "1.75"
name = "elara-test"
version = "0.1.0"
authors = ["ELARA Protocol Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ELARA Protocol - Test harness, chaos testing, and benchmarking tools for protocol validation"
homepage = "https://github.com/rafaelsistems/ELARA-Protocol"
documentation = "https://docs.rs/elara-test"
readme = "README.md"
keywords = [
"elara",
"test",
"chaos",
"benchmark",
"harness",
]
categories = [
"development-tools",
"development-tools::testing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rafaelsistems/ELARA-Protocol"
[lib]
name = "elara_test"
path = "src/lib.rs"
[[bench]]
name = "crypto_bench"
path = "benches/crypto_bench.rs"
harness = false
[[bench]]
name = "state_bench"
path = "benches/state_bench.rs"
harness = false
[[bench]]
name = "time_bench"
path = "benches/time_bench.rs"
harness = false
[[bench]]
name = "wire_bench"
path = "benches/wire_bench.rs"
harness = false
[dependencies.elara-core]
version = "0.1.0"
[dependencies.elara-crypto]
version = "0.1.0"
[dependencies.elara-msp]
version = "0.1.0"
[dependencies.elara-runtime]
version = "0.1.0"
[dependencies.elara-state]
version = "0.1.0"
[dependencies.elara-time]
version = "0.1.0"
[dependencies.elara-transport]
version = "0.1.0"
[dependencies.elara-voice]
version = "0.1.0"
[dependencies.elara-wire]
version = "0.1.0"
[dependencies.rand]
version = "0.8"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = [
"rt-multi-thread",
"net",
"time",
"sync",
"macros",
]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.proptest]
version = "1.4"