mirror of
https://github.com/aaif-goose/goose.git
synced 2026-07-03 14:10:03 +02:00
25 lines
797 B
TOML
25 lines
797 B
TOML
[package]
|
|
name = "goose-sdk"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Rust SDK for talking to Goose over the Agent Client Protocol (ACP)"
|
|
|
|
[dependencies]
|
|
agent-client-protocol = { workspace = true, features = ["unstable"] }
|
|
agent-client-protocol-schema = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
schemars = { workspace = true, features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true, features = ["compat", "rt"] }
|
|
|
|
[package.metadata.cargo-machete]
|
|
# Used to provide extras imports for agent-client-protocol
|
|
ignored = ["agent-client-protocol-schema"]
|