[package]
name = "rill-runtime"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
description = "Signed-model local runtime and IPC server for RillML."
[lib]
name = "rill_runtime"
path = "src/lib.rs"
[[bin]]
name = "rill-runtime"
path = "src/bin/rill-runtime.rs"
[[bin]]
name = "rill-pack"
path = "src/bin/rill-pack.rs"
[features]
default = ["wasm"]
wasm = ["dep:wasmtime"]
[dependencies]
clap = { version = "4.5", features = ["derive"] }
ed25519-dalek.workspace = true
hex.workspace = true
rill-handler-api = { workspace = true }
rill-ml = { workspace = true, features = ["serde"] }
rill-runtime-protocol = { workspace = true }
semver.workspace = true
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
thiserror.workspace = true
wasmtime = { workspace = true, optional = true }
zip.workspace = true
[dev-dependencies]
tempfile = "3"