[package]
edition = "2024"
name = "greentic-mcp-exec"
version = "0.4.21"
build = false
include = [
"src/**",
"tests/**",
"README.md",
"Cargo.toml",
"wit/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Greentic executor for running wasix:mcp-compatible WebAssembly components with policy-driven verification and sandboxing."
documentation = "https://docs.rs/greentic-mcp-exec"
readme = "README.md"
keywords = [
"greentic",
"wasm",
"executor",
"mcp",
]
categories = ["wasm"]
license = "MIT"
repository = "https://github.com/agentic/greentic-mcp"
resolver = "2"
[features]
default = [
"describe-v1",
"runner-host-v1",
]
describe-v1 = []
runner-host-v1 = []
[lib]
name = "greentic_mcp_exec"
path = "src/lib.rs"
[[bin]]
name = "greentic-mcp-exec"
path = "src/bin/greentic-mcp-exec.rs"
[[test]]
name = "echo_wasm_smoke"
path = "tests/echo_wasm_smoke.rs"
[[test]]
name = "offline_mock"
path = "tests/offline_mock.rs"
[[test]]
name = "online_weather"
path = "tests/online_weather.rs"
[[test]]
name = "router_and_legacy"
path = "tests/router_and_legacy.rs"
[[test]]
name = "router_fixture"
path = "tests/router_fixture.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.cap-std]
version = "4"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.greentic-interfaces-wasmtime]
version = "0.4"
[dependencies.greentic-types]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"json",
"gzip",
"brotli",
"deflate",
"rustls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
]
[dependencies.tracing]
version = "0.1"
[dependencies.wasmtime]
version = "41"
features = [
"async",
"component-model",
"cranelift",
"runtime",
"std",
]
default-features = false
[dependencies.wasmtime-wasi]
version = "41"
features = ["p2"]
default-features = false
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wat]
version = "1"