[package]
name = "escher-execution-engine"
version = "0.1.2"
edition = "2021"
authors = ["Escher Team"]
description = "Production-ready async execution engine for system commands"
license-file = "LICENSE"
repository = "https://github.com/escher-dbai/v2-execution-engine-rust"
homepage = "https://github.com/escher-dbai/v2-execution-engine-rust"
[lib]
name = "execution_engine"
path = "src/lib.rs"
documentation = "https://docs.rs/execution-engine"
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1"
async-trait = "0.1"
futures = "0.3"
tracing = "0.1"
once_cell = "1.18"
[features]
default = []
[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
criterion = "0.5"
tempfile = "3"
[[example]]
name = "standalone"
path = "examples/standalone.rs"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1