agent-runtime 0.2.0

A Rust implementation of the Model Context Protocol (MCP) for AI tool integration
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "agent-runtime"
version = "0.2.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 = "agent_with_tools_demo"
path = "src/bin/agent_with_tools_demo.rs"

[[bin]]
name = "complex_viz"
path = "src/bin/complex_viz.rs"

[[bin]]
name = "config_demo"
path = "src/bin/config_demo.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 = "mcp_tools_demo"
path = "src/bin/mcp_tools_demo.rs"

[[bin]]
name = "mermaid_viz"
path = "src/bin/mermaid_viz.rs"

[[bin]]
name = "multi_subscriber"
path = "src/bin/multi_subscriber.rs"

[[bin]]
name = "native_tools_demo"
path = "src/bin/native_tools_demo.rs"

[[bin]]
name = "nested_workflow"
path = "src/bin/nested_workflow.rs"

[[bin]]
name = "production_features_demo"
path = "src/bin/production_features_demo.rs"

[[bin]]
name = "step_types_demo"
path = "src/bin/step_types_demo.rs"

[[bin]]
name = "workflow_demo"
path = "src/bin/workflow_demo.rs"

[[test]]
name = "error_tests"
path = "tests/error_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "load_tests"
path = "tests/load_tests.rs"

[[bench]]
name = "agent_benchmarks"
path = "benches/agent_benchmarks.rs"
harness = false

[dependencies.actix-web]
version = "4"

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.config]
version = "0.14"

[dependencies.dashmap]
version = "5.5"

[dependencies.futures]
version = "0.3"

[dependencies.inventory]
version = "0.3"

[dependencies.md5]
version = "0.7"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rand]
version = "0.8"

[dependencies.reqwest]
version = "0.11"
features = [
    "json",
    "stream",
]

[dependencies.rust-mcp-sdk]
version = "0.8"
features = ["client"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1.0"
features = [
    "full",
    "process",
]

[dependencies.toml]
version = "0.8"

[dependencies.uuid]
version = "1.0"
features = ["v4"]

[dev-dependencies.criterion]
version = "0.5"
features = [
    "async_tokio",
    "html_reports",
]