[package]
edition = "2021"
name = "agent-runtime"
version = "0.1.0"
authors = ["Travis Sharp <travis@kuipersys.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust implementation of the Model Context Protocol (MCP) for AI tool integration"
readme = "README.md"
keywords = [
"agent",
"ai",
"llm",
"tools",
"protocol",
]
categories = [
"development-tools",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tsharp/agent-runtime"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
[lib]
name = "agent_runtime"
path = "src/lib.rs"
[[bin]]
name = "complex_viz"
path = "src/bin/complex_viz.rs"
[[bin]]
name = "hello_workflow"
path = "src/bin/hello_workflow.rs"
[[bin]]
name = "llama_demo"
path = "src/bin/llama_demo.rs"
[[bin]]
name = "llm_demo"
path = "src/bin/llm_demo.rs"
[[bin]]
name = "mermaid_viz"
path = "src/bin/mermaid_viz.rs"
[[bin]]
name = "multi_subscriber"
path = "src/bin/multi_subscriber.rs"
[[bin]]
name = "nested_workflow"
path = "src/bin/nested_workflow.rs"
[[bin]]
name = "step_types_demo"
path = "src/bin/step_types_demo.rs"
[[bin]]
name = "workflow_demo"
path = "src/bin/workflow_demo.rs"
[dependencies.actix-web]
version = "4"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dashmap]
version = "5.5"
[dependencies.futures]
version = "0.3"
[dependencies.inventory]
version = "0.3"
[dependencies.parking_lot]
version = "0.12"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"stream",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = [
"full",
"process",
]
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[dev-dependencies.actix-web]
version = "4"
[dev-dependencies.tempfile]
version = "3.8"
[dev-dependencies.tokio-test]
version = "0.4"