[package]
edition = "2021"
rust-version = "1.70"
name = "agent-block"
version = "0.17.0"
authors = ["Yutaka Nishimura"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lua-first Agent Runtime built on AgentMesh"
readme = "README.md"
keywords = [
"lua",
"agent",
"runtime",
"mcp",
"mesh",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/agent-block"
[[bin]]
name = "agent-block"
path = "src/main.rs"
[[example]]
name = "echo_mcp_server"
path = "examples/echo_mcp_server.rs"
[[example]]
name = "subscribe_test_server"
path = "examples/bin/subscribe_test_server.rs"
[[test]]
name = "e2e_agent"
path = "tests/e2e_agent.rs"
[[test]]
name = "e2e_basic"
path = "tests/e2e_basic.rs"
[[test]]
name = "e2e_build_tools_extra"
path = "tests/e2e_build_tools_extra.rs"
[[test]]
name = "e2e_bus"
path = "tests/e2e_bus.rs"
[[test]]
name = "e2e_compile_loop"
path = "tests/e2e_compile_loop.rs"
[[test]]
name = "e2e_http"
path = "tests/e2e_http.rs"
[[test]]
name = "e2e_kv"
path = "tests/e2e_kv.rs"
[[test]]
name = "e2e_lshape"
path = "tests/e2e_lshape.rs"
[[test]]
name = "e2e_mcp"
path = "tests/e2e_mcp.rs"
[[test]]
name = "e2e_mcp_resource_subscribe"
path = "tests/e2e_mcp_resource_subscribe.rs"
[[test]]
name = "e2e_mcp_rich"
path = "tests/e2e_mcp_rich.rs"
[[test]]
name = "e2e_obs"
path = "tests/e2e_obs.rs"
[[test]]
name = "e2e_register_tools"
path = "tests/e2e_register_tools.rs"
[[test]]
name = "e2e_session"
path = "tests/e2e_session.rs"
[[test]]
name = "e2e_sh"
path = "tests/e2e_sh.rs"
[[test]]
name = "e2e_sql"
path = "tests/e2e_sql.rs"
[[test]]
name = "e2e_task"
path = "tests/e2e_task.rs"
[[test]]
name = "e2e_tool"
path = "tests/e2e_tool.rs"
[[test]]
name = "e2e_ts"
path = "tests/e2e_ts.rs"
[[test]]
name = "poc_main_isle_exec"
path = "tests/poc_main_isle_exec.rs"
[dependencies.agent-mesh-core]
version = "0.3"
[dependencies.agent-mesh-sdk]
version = "0.3"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.dotenvy]
version = "0.15"
[dependencies.llm-extract]
version = "0.1"
[dependencies.mlua]
version = "0.11"
features = [
"lua54",
"vendored",
"async",
"serialize",
]
[dependencies.mlua-batteries]
version = "0.3"
features = [
"json",
"fs",
"env",
"path",
"time",
"task",
"sql",
"kv",
]
[dependencies.mlua-isle]
version = "0.4.1"
features = [
"pool",
"tokio",
]
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.rmcp]
version = "1.4.0"
features = [
"client",
"transport-child-process",
"client-side-sse",
"transport-streamable-http-client",
"transport-streamable-http-client-reqwest",
]
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.rustls]
version = "0.23"
features = ["ring"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.axum]
version = "0.8"
features = [
"http1",
"tokio",
]
default-features = false
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.rmcp]
version = "1.4.0"
features = [
"server",
"transport-streamable-http-server",
"elicitation",
]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.tokio-util]
version = "0.7"
[target."cfg(unix)".dev-dependencies.nix]
version = "0.29"
features = [
"signal",
"process",
]