[package]
edition = "2021"
rust-version = "1.94"
name = "ncp-runtime"
version = "0.3.4"
build = false
include = [
"src/**",
"tests/**",
"Cargo.toml",
"LICENSE",
"NOTICE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "ncp"
description = "NCP reference runtime — composable, auditable WASM agent graphs"
homepage = "https://github.com/madeinplutofabio/neural-computation-protocol"
readme = "README.md"
keywords = [
"wasm",
"agentic-ai",
"graph",
"deterministic",
"ncp",
]
categories = [
"wasm",
"command-line-utilities",
"asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/madeinplutofabio/neural-computation-protocol"
[lib]
name = "ncp_runtime"
path = "src/lib.rs"
[[bin]]
name = "ncp"
path = "src/main.rs"
[[bin]]
name = "ncp-bench"
path = "src/bin/ncp-bench.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.hex]
version = "0.4"
[dependencies.minicbor]
version = "0.25"
features = ["alloc"]
default-features = false
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dependencies.wasmtime]
version = "=43.0.0"