[package]
edition = "2021"
name = "radkit"
version = "0.0.5"
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"ui/dist/**/*",
"Cargo.toml",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust AI Agent Development Kit"
homepage = "https://radkit.rs"
documentation = "https://radkit.rs"
readme = "README.md"
keywords = [
"ai",
"agent",
"ai-agent",
"a2a",
"agent-sdk",
]
license = "MIT"
repository = "https://github.com/agents-sh/radkit"
[features]
agentskill = ["dep:serde_yaml"]
default = ["macros"]
dev-ui = [
"runtime",
"dep:ts-rs",
]
macros = [
"dep:radkit-macros",
"dep:tryparse-derive",
"agentskill",
]
mcp = [
"dep:rmcp",
"dep:tracing",
]
openapi = [
"dep:openapiv3",
"dep:serde_yaml",
"dep:url",
]
runtime = [
"dep:axum",
"dep:tower-http",
"dep:tracing",
"dep:tracing-subscriber",
]
task-store-sqlite = ["dep:sqlx"]
test-support = []
[lib]
name = "radkit"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[test]]
name = "executor_integration"
path = "tests/executor_integration.rs"
[[test]]
name = "mcp_agent_e2e"
path = "tests/mcp_agent_e2e.rs"
[[test]]
name = "mcp_weather_simple"
path = "tests/mcp_weather_simple.rs"
[[test]]
name = "memory_service_e2e"
path = "tests/memory_service_e2e.rs"
[[test]]
name = "openapi_agent_e2e"
path = "tests/openapi_agent_e2e.rs"
[[test]]
name = "openapi_missing_operation_id"
path = "tests/openapi_missing_operation_id.rs"
[[test]]
name = "openapi_petstore_simple"
path = "tests/openapi_petstore_simple.rs"
[[test]]
name = "runtime_test"
path = "tests/runtime_test.rs"
[[test]]
name = "skill_execution"
path = "tests/skill_execution.rs"
[[test]]
name = "tool_macro_e2e"
path = "tests/tool_macro_e2e.rs"
[[test]]
name = "tool_macro_worker_tests"
path = "tests/tool_macro_worker_tests.rs"
[[test]]
name = "worker_execution"
path = "tests/worker_execution.rs"
[dependencies.a2a-client]
version = "0.2.0"
[dependencies.a2a-types]
version = "0.2.0"
[dependencies.async-stream]
version = "0.3.6"
[dependencies.async-trait]
version = "0.1"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.derive_more]
version = "2.0.1"
features = [
"from",
"display",
]
[dependencies.futures]
version = "0.3"
[dependencies.openapiv3]
version = "2.0"
optional = true
[dependencies.pbjson-types]
version = "0.9.0"
[dependencies.radkit-macros]
version = "0.0.3"
optional = true
[dependencies.reqwest]
version = "0.12"
features = ["json"]
default-features = false
[dependencies.schemars]
version = "1.0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
optional = true
[dependencies.thiserror]
version = "1"
[dependencies.tryparse]
version = "0.4.4"
features = ["derive"]
default-features = false
[dependencies.tryparse-derive]
version = "0.4.4"
optional = true
[dependencies.url]
version = "2.5"
optional = true
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.dotenvy]
version = "0.15"
[dev-dependencies.http-body-util]
version = "0.1"
[target.'cfg(all(target_os = "wasi", target_env = "p1"))'.dependencies.getrandom]
version = "0.2"
[target.'cfg(all(target_os = "wasi", target_env = "p1"))'.dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[target.'cfg(all(target_os = "wasi", target_env = "p1"))'.dependencies.tokio]
version = "1.47.0"
features = [
"rt",
"sync",
"time",
"io-util",
"macros",
]
[target.'cfg(all(target_os = "wasi", target_env = "p1"))'.dependencies.tracing]
version = "0.1"
optional = true
[target.'cfg(all(target_os = "wasi", target_env = "p1"))'.dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
optional = true
[target.'cfg(all(target_os = "wasi", target_env = "p1"))'.dependencies.wasm-bindgen-futures]
version = "0.4"
[target.'cfg(all(target_os = "wasi", target_env = "p1"))'.dev-dependencies.wasm-bindgen-test]
version = "0.3"
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.axum]
version = "0.8.0"
optional = true
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.dashmap]
version = "6"
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.rand]
version = "0.9.2"
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls-native-roots",
]
default-features = false
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.rmcp]
version = "0.6.3"
features = [
"client",
"transport-child-process",
"transport-streamable-http-client-reqwest",
]
optional = true
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.sqlx]
version = "0.8"
features = [
"sqlite",
"runtime-tokio-rustls",
]
optional = true
default-features = false
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"sync",
"net",
"process",
"macros",
]
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.tower-http]
version = "0.5"
features = [
"trace",
"cors",
"fs",
]
optional = true
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.tracing]
version = "0.1"
optional = true
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
optional = true
[target.'cfg(not(all(target_os = "wasi", target_env = "p1")))'.dependencies.ts-rs]
version = "11.1.0"
optional = true