[package]
edition = "2024"
name = "composable-runtime"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Modulewise Composable Runtime"
readme = "README.md"
keywords = ["wasm"]
categories = ["wasm"]
license = "Apache-2.0"
repository = "https://github.com/modulewise/composable-runtime"
[package.metadata.docs.rs]
all-features = true
[features]
cli = ["messaging"]
default = ["cli"]
messaging = ["dep:tokio-util"]
[lib]
name = "composable_runtime"
path = "src/lib.rs"
[[bin]]
name = "composable"
path = "src/main.rs"
[[test]]
name = "config-composition"
path = "tests/config-composition.rs"
[[test]]
name = "cycle_detection"
path = "tests/cycle_detection.rs"
[[test]]
name = "direct_wasm_file"
path = "tests/direct_wasm_file.rs"
[[test]]
name = "expects_and_enables"
path = "tests/expects_and_enables.rs"
[[test]]
name = "host_capabilities"
path = "tests/host_capabilities.rs"
[[test]]
name = "interceptors"
path = "tests/interceptors.rs"
[[test]]
name = "unsatisfied_imports"
path = "tests/unsatisfied_imports.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.composable-interceptor]
version = "0.4.0"
[dependencies.http-body-util]
version = "0.1"
[dependencies.hyper]
version = "1"
features = [
"http1",
"http2",
"client",
"http1",
"http2",
]
[dependencies.oci-client]
version = "0.16"
[dependencies.petgraph]
version = "0.8"
[dependencies.rustyline]
version = "17"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.static-config]
version = "0.2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7"
optional = true
[dependencies.toml]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.wac-graph]
version = "0.9"
[dependencies.wac-types]
version = "0.9"
[dependencies.wasm-pkg-client]
version = "0.15"
[dependencies.wasmtime]
version = "42"
[dependencies.wasmtime-wasi]
version = "42"
[dependencies.wasmtime-wasi-config]
version = "42"
[dependencies.wasmtime-wasi-http]
version = "42"
[dependencies.wasmtime-wasi-io]
version = "42"
[dependencies.wit-component]
version = "0.245"
[dependencies.wit-parser]
version = "0.245"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.wat]
version = "1.245"