d78c69f944
Co-authored-by: Douwe Osinga <douwe@squareup.com>
70 lines
1.9 KiB
TOML
70 lines
1.9 KiB
TOML
[package]
|
|
name = "goose-server"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
cuda = ["goose/cuda"]
|
|
|
|
[dependencies]
|
|
goose = { path = "../goose" }
|
|
goose-mcp = { path = "../goose-mcp" }
|
|
rmcp = { workspace = true }
|
|
axum = { version = "0.8.1", features = ["ws", "macros"] }
|
|
tokio = { workspace = true }
|
|
chrono = "0.4"
|
|
tower-http = { workspace = true, features = ["cors"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { workspace = true, features = ["preserve_order"] }
|
|
futures = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "json", "time"] }
|
|
tracing-appender = "0.2"
|
|
tokio-stream = "0.1"
|
|
anyhow = { workspace = true }
|
|
bytes = "1.5"
|
|
http = "1.0"
|
|
base64 = { workspace = true }
|
|
config = { version = "0.15.13", features = ["toml"] }
|
|
thiserror = "1.0"
|
|
clap = { version = "4.4", features = ["derive"] }
|
|
serde_yaml = "0.9.34"
|
|
utoipa = { version = "4.1", features = ["axum_extras", "chrono"] }
|
|
reqwest = { workspace = true, features = ["json", "rustls-tls", "blocking", "multipart", "system-proxy"], default-features = false }
|
|
tokio-util = "0.7.15"
|
|
serde_path_to_error = "0.1.20"
|
|
tokio-tungstenite = { version = "0.28.0", features = ["rustls-tls-native-roots"] }
|
|
url = { workspace = true }
|
|
rand = "0.9.2"
|
|
hex = "0.4.3"
|
|
socket2 = "0.6.1"
|
|
fs2 = "0.4.3"
|
|
rustls = { version = "0.23", features = ["ring"] }
|
|
uuid = { version = "1.19.0", features = ["v4"] }
|
|
once_cell = "1.20.2"
|
|
dirs = "5.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winreg = { version = "0.55.0" }
|
|
|
|
[[bin]]
|
|
name = "goosed"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "generate_schema"
|
|
path = "src/bin/generate_schema.rs"
|
|
|
|
[dev-dependencies]
|
|
tower = { workspace = true }
|
|
env-lock = { workspace = true }
|
|
wiremock = { workspace = true }
|