[package]
edition = "2021"
name = "apiary-runtime"
version = "0.1.1-dev.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Node runtime, bee pool execution, and swarm coordination for the Apiary distributed data processing framework"
readme = "README.md"
license = "Apache-2.0"
[lib]
name = "apiary_runtime"
path = "src/lib.rs"
[[test]]
name = "backpressure"
path = "tests/backpressure.rs"
[[test]]
name = "chaos"
path = "tests/chaos.rs"
[[test]]
name = "concurrent_writes"
path = "tests/concurrent_writes.rs"
[[test]]
name = "mason_isolation"
path = "tests/mason_isolation.rs"
[[test]]
name = "multi_node"
path = "tests/multi_node.rs"
[[test]]
name = "node_failure"
path = "tests/node_failure.rs"
[[test]]
name = "solo_mode"
path = "tests/solo_mode.rs"
[dependencies.apiary-core]
version = "0.1.1-dev.0"
[dependencies.apiary-query]
version = "0.1.1-dev.0"
[dependencies.apiary-storage]
version = "0.1.1-dev.0"
[dependencies.arrow]
version = "53"
features = ["prettyprint"]
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.tempfile]
version = "3"