[package]
edition = "2021"
rust-version = "1.88"
name = "monoloop-loop"
version = "0.1.1"
authors = ["Alexander R. Croft"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal extensible Loop: lossless canonical subscription, empty-capable tools"
homepage = "https://frogfish.io"
readme = "README.md"
keywords = [
"llm",
"agent",
"async",
"tokio",
"acp",
]
categories = [
"asynchronous",
"api-bindings",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/frogfishio/monoloop"
[lib]
name = "monoloop_loop"
path = "src/lib.rs"
[[example]]
name = "fake_echo"
path = "examples/fake_echo.rs"
[[test]]
name = "admission_lifecycle"
path = "tests/admission_lifecycle.rs"
[[test]]
name = "direct_llm_e2e"
path = "tests/direct_llm_e2e.rs"
[[test]]
name = "empty_loop"
path = "tests/empty_loop.rs"
[[test]]
name = "exchange_e2e"
path = "tests/exchange_e2e.rs"
[[test]]
name = "hardening"
path = "tests/hardening.rs"
[[test]]
name = "linked_tools"
path = "tests/linked_tools.rs"
[[test]]
name = "mcp_gateway"
path = "tests/mcp_gateway.rs"
[[test]]
name = "rmcp_loopback_spike"
path = "tests/rmcp_loopback_spike.rs"
[[test]]
name = "runtime_startup"
path = "tests/runtime_startup.rs"
[dependencies.axum]
version = "0.8"
features = [
"http1",
"tokio",
]
default-features = false
[dependencies.jsonschema]
version = "0.49"
default-features = false
[dependencies.monoloop-connector]
version = "0.1.1"
[dependencies.monoloop-contracts]
version = "0.1.1"
[dependencies.monoloop-interpreter]
version = "0.1.1"
[dependencies.rand]
version = "0.9"
features = [
"std",
"std_rng",
"os_rng",
]
default-features = false
[dependencies.rmcp]
version = "3.1.2"
features = [
"server",
"macros",
"transport-streamable-http-server",
]
default-features = false
[dependencies.secrecy]
version = "0.10"
features = ["serde"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.44"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"io-util",
"net",
"macros",
"rt-multi-thread",
"sync",
"time",
"net",
"io-util",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1.16"
features = [
"v4",
"serde",
]
[dev-dependencies.reqwest]
version = "0.13"
features = [
"rustls",
"json",
"stream",
"http2",
]
default-features = false
[dev-dependencies.tokio]
version = "1.44"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"io-util",
"net",
"test-util",
"macros",
"rt-multi-thread",
"sync",
"time",
"net",
]