[package]
edition = "2021"
rust-version = "1.88"
name = "arcp-tower"
version = "0.1.0-alpha.0"
authors = ["Nick Ficano <nficano@gmail.com>"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tower middleware for the Agent Runtime Control Protocol (ARCP). Placeholder — integration coming in a future release."
homepage = "https://github.com/agentruntimecontrolprotocol/rust-sdk"
documentation = "https://docs.rs/arcp-tower"
readme = "README.md"
keywords = [
"arcp",
"tower",
"middleware",
"agent",
"protocol",
]
categories = [
"network-programming",
"asynchronous",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/agentruntimecontrolprotocol/rust-sdk"
[lib]
name = "arcp_tower"
path = "src/lib.rs"
[dependencies.arcp-core]
version = "2.0.0"
[lints.clippy]
expect_used = "warn"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "deny"
unreachable_pub = "warn"
unsafe_code = "deny"