[package]
edition = "2021"
name = "execgo-runtime"
version = "1.0.0-b1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Adaptive data-plane runtime for ExecGo with HTTP API, CLI, capability negotiation, and local resource ledger"
homepage = "https://github.com/iammm0/execgo-runtime"
documentation = "https://docs.rs/execgo-runtime"
readme = "README.md"
keywords = [
"execgo",
"runtime",
"scheduler",
"sandbox",
"orchestration",
]
categories = [
"command-line-utilities",
"web-programming::http-server",
]
license = "MIT"
repository = "https://github.com/iammm0/execgo-runtime"
[lib]
name = "execgo_runtime"
path = "src/lib.rs"
[[bin]]
name = "execgo-runtime"
path = "src/main.rs"
[[test]]
name = "e2e"
path = "tests/e2e.rs"
[dependencies.axum]
version = "0.7"
features = [
"http1",
"json",
"tokio",
]
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.29"
features = [
"fs",
"process",
"resource",
"sched",
"signal",
"user",
]
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.40"
features = [
"fs",
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
"json",
]
[dependencies.uuid]
version = "1.10"
features = [
"serde",
"v4",
]
[dev-dependencies.tempfile]
version = "3.12"