49ad115fb1
Signed-off-by: Adrian Cole <adrian@tetrate.io>
53 lines
1.5 KiB
TOML
53 lines
1.5 KiB
TOML
[package]
|
|
name = "goose-acp"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
|
|
[[bin]]
|
|
name = "goose-acp-server"
|
|
path = "src/bin/server.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
goose = { path = "../goose" }
|
|
goose-mcp = { path = "../goose-mcp" }
|
|
rmcp = { workspace = true }
|
|
sacp = "10.1.0"
|
|
agent-client-protocol-schema = { version = "0.10", features = ["unstable_session_model"] }
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { version = "0.7.15", features = ["compat", "rt"] }
|
|
tracing = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
futures = { workspace = true }
|
|
regex = { workspace = true }
|
|
fs-err = "3"
|
|
url = { workspace = true }
|
|
|
|
# HTTP server dependencies
|
|
axum = { version = "0.8", features = ["ws"] }
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tower-http = { version = "0.6", features = ["cors"] }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
|
|
async-stream = "0.3.6"
|
|
bytes = "1.11.0"
|
|
http-body-util = "0.1.3"
|
|
uuid = { version = "1.11", features = ["v7"] }
|
|
|
|
[dev-dependencies]
|
|
assert-json-diff = "2.0.2"
|
|
async-trait = "0.1.89"
|
|
goose-test-support = { path = "../goose-test-support" }
|
|
wiremock = { workspace = true }
|
|
tempfile = "3"
|
|
test-case = { workspace = true }
|
|
axum = "0.8"
|
|
rmcp = { workspace = true, features = ["transport-streamable-http-server"] }
|