rill-runtime 1.3.0

Signed-model local runtime and IPC server for RillML.
Documentation
[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]
# WASM handler support is on by default so that `cargo install rill-runtime`
# matches the official GitHub release binary behaviour. The core runtime
# stays WASM-free only when the user explicitly passes `--no-default-features`.
default = ["wasm"]
# Enables the sandboxed WASM InvokeHandler. Requires wasmtime, which raises the
# effective build-toolchain requirement; the core runtime stays WASM-free when
# this feature is off.
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"