mirror of
https://github.com/block/goose.git
synced 2026-04-26 10:40:45 +00:00
Some checks are pending
Canary / Prepare Version (push) Waiting to run
Canary / build-cli (push) Blocked by required conditions
Canary / Upload Install Script (push) Blocked by required conditions
Canary / bundle-desktop (push) Blocked by required conditions
Canary / bundle-desktop-intel (push) Blocked by required conditions
Canary / bundle-desktop-linux (push) Blocked by required conditions
Canary / bundle-desktop-windows (push) Blocked by required conditions
Canary / Release (push) Blocked by required conditions
Cargo Deny / deny (push) Waiting to run
Unused Dependencies / machete (push) Waiting to run
CI / changes (push) Waiting to run
CI / Check Rust Code Format (push) Blocked by required conditions
CI / Build and Test Rust Project (push) Blocked by required conditions
CI / Build Rust Project on Windows (push) Waiting to run
CI / Check MSRV (push) Blocked by required conditions
CI / Lint Rust Code (push) Blocked by required conditions
CI / Check Generated Schemas are Up-to-Date (push) Blocked by required conditions
CI / Test and Lint Electron Desktop App (push) Blocked by required conditions
Live Provider Tests / check-fork (push) Waiting to run
Live Provider Tests / changes (push) Blocked by required conditions
Live Provider Tests / Build Binary (push) Blocked by required conditions
Live Provider Tests / Smoke Tests (push) Blocked by required conditions
Live Provider Tests / Smoke Tests (Code Execution) (push) Blocked by required conditions
Live Provider Tests / Compaction Tests (push) Blocked by required conditions
Live Provider Tests / goose server HTTP integration tests (push) Blocked by required conditions
Publish Docker Image / docker (push) Waiting to run
Scorecard supply-chain security / Scorecard analysis (push) Waiting to run
Signed-off-by: jh-block <jhugo@block.xyz>
67 lines
2.1 KiB
TOML
67 lines
2.1 KiB
TOML
[package]
|
|
name = "goose-acp"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
|
|
[[bin]]
|
|
name = "generate-acp-schema"
|
|
path = "src/bin/generate_acp_schema.rs"
|
|
|
|
[features]
|
|
default = ["code-mode", "rustls-tls"]
|
|
code-mode = ["goose/code-mode"]
|
|
local-inference = ["goose/local-inference"]
|
|
rustls-tls = ["goose/rustls-tls", "goose-mcp/rustls-tls"]
|
|
native-tls = ["goose/native-tls", "goose-mcp/native-tls"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
goose = { path = "../goose", default-features = false }
|
|
goose-mcp = { path = "../goose-mcp", default-features = false }
|
|
rmcp = { workspace = true }
|
|
sacp = { workspace = true, features = ["unstable"] }
|
|
agent-client-protocol-schema = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true, features = ["compat", "rt"] }
|
|
tracing = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
futures = { workspace = true }
|
|
regex = { workspace = true }
|
|
fs-err = "3"
|
|
strum = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
# HTTP server dependencies
|
|
axum = { workspace = true, features = ["ws"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tower-http = { workspace = true, features = ["cors"] }
|
|
async-stream = { workspace = true }
|
|
http-body-util = "0.1.3"
|
|
uuid = { workspace = true, features = ["v7"] }
|
|
schemars = { workspace = true, features = ["derive"] }
|
|
goose-acp-macros = { path = "../goose-acp-macros" }
|
|
goose-sdk = { path = "../goose-sdk" }
|
|
base64 = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
async-trait = { workspace = true }
|
|
goose-test-support = { path = "../goose-test-support" }
|
|
wiremock = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
test-case = { workspace = true }
|
|
axum = { workspace = true }
|
|
rmcp = { workspace = true, features = ["transport-streamable-http-server"] }
|
|
sqlx = { version = "0.8", default-features = false, features = ["runtime-tokio-rustls", "sqlite"] }
|
|
|
|
[package.metadata.cargo-machete]
|
|
# Used to provide extras imports for sacp
|
|
ignored = ["agent-client-protocol-schema"]
|