escher-execution-engine 0.1.2

Production-ready async execution engine for system commands
Documentation
[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"

# Network layer for server feedback (optional)
#
# For local development (default):
# cloudops-network = { version = "0.1", path = "../v2-network-layer-rust", optional = true }
#
# For public GitHub repo (when published):
# cloudops-network = { git = "https://github.com/escher-dbai/v2-network-layer-rust", branch = "main", optional = true }
#
# NOTE: To switch between local and git, comment/uncomment the appropriate line above

[features]
default = []
# server-feedback = ["cloudops-network"]

[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