Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,11 @@ jobs:

- uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Install Dependencies
run: |
sudo apt update -y
sudo apt install -y libdbus-1-dev libxcb1-dev

- name: Cache Cargo artifacts
uses: Swatinem/rust-cache@v2

Expand Down
70 changes: 53 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 9 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,19 @@ string_slice = "warn"

[workspace.dependencies]
rmcp = { version = "0.12.0", features = ["schemars", "auth"] }
sacp = "10.0.0"
anyhow = "1.0"
futures = "0.3"
regex = "1.12"
serde_json = "1.0"
tokio = { version = "1.49", features = ["full"] }
tracing = "0.1"
webbrowser = "1.0"
which = "8.0.0"
etcetera = "0.11.0"
ignore = "0.4.25"
env-lock = "1.0.1"
wiremock = "0.6"
serial_test = "3.2.0"

# Patch for Windows cross-compilation issue with crunchy
[patch.crates-io]
Expand Down
35 changes: 35 additions & 0 deletions crates/goose-acp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[package]
name = "goose-acp"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description.workspace = true

[lints]
workspace = true

[dependencies]
goose = { path = "../goose" }
goose-mcp = { path = "../goose-mcp" }
rmcp = { workspace = true }
sacp = "10.1.0"
anyhow = { workspace = true }
tokio = { workspace = true }
tokio-util = { version = "0.7.15", features = ["compat", "rt"] }
tracing = { workspace = true }
url = "2.5"
serde_json = { workspace = true }
futures = { workspace = true }
regex = { workspace = true }
fs-err = "3"

[dev-dependencies]
assert-json-diff = "2.0.2"
wiremock = { workspace = true }
tempfile = "3"
test-case = "3.3"
axum = "0.8"
tower-http = { version = "0.6", features = ["cors", "fs", "auth"] }
rmcp = { workspace = true, features = ["transport-streamable-http-server"] }
1 change: 1 addition & 0 deletions crates/goose-acp/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod server;
Loading
Loading