mirror of
https://github.com/block/goose.git
synced 2026-04-28 03:29:36 +00:00
Update dependencies to help in Fedora packaging (#5835)
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-linux (push) Blocked by required conditions
Canary / bundle-desktop-windows (push) Blocked by required conditions
Canary / Release (push) Blocked by required conditions
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 / Lint Rust Code (push) Blocked by required conditions
CI / Check OpenAPI Schema is Up-to-Date (push) Blocked by required conditions
CI / Test and Lint Electron Desktop App (push) Blocked by required conditions
Deploy Documentation / deploy (push) Waiting to run
Live Provider Tests / check-fork (push) Waiting to run
Live Provider Tests / changes (push) Blocked by required conditions
Live Provider Tests / Build Release Binary (push) Blocked by required conditions
Live Provider Tests / Smoke Tests (push) Blocked by required conditions
Documentation Site Preview / deploy (push) Waiting to run
Publish Docker Image / docker (push) Waiting to run
Scorecard supply-chain security / Scorecard analysis (push) Waiting to run
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-linux (push) Blocked by required conditions
Canary / bundle-desktop-windows (push) Blocked by required conditions
Canary / Release (push) Blocked by required conditions
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 / Lint Rust Code (push) Blocked by required conditions
CI / Check OpenAPI Schema is Up-to-Date (push) Blocked by required conditions
CI / Test and Lint Electron Desktop App (push) Blocked by required conditions
Deploy Documentation / deploy (push) Waiting to run
Live Provider Tests / check-fork (push) Waiting to run
Live Provider Tests / changes (push) Blocked by required conditions
Live Provider Tests / Build Release Binary (push) Blocked by required conditions
Live Provider Tests / Smoke Tests (push) Blocked by required conditions
Documentation Site Preview / deploy (push) Waiting to run
Publish Docker Image / docker (push) Waiting to run
Scorecard supply-chain security / Scorecard analysis (push) Waiting to run
Signed-off-by: Rodolfo Olivieri <rodolfo.olivieri3@gmail.com> Co-authored-by: Jack Amadeo <jackamadeo@squareup.com>
This commit is contained in:
parent
9569c1fb0a
commit
4e117723b7
6 changed files with 357 additions and 185 deletions
504
Cargo.lock
generated
504
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -16,6 +16,10 @@ string_slice = "warn"
|
|||
|
||||
[workspace.dependencies]
|
||||
rmcp = { version = "0.9.1", features = ["schemars", "auth"] }
|
||||
webbrowser = "1.0"
|
||||
which = "8.0.0"
|
||||
etcetera = "0.11.0"
|
||||
ignore = "0.4.25"
|
||||
|
||||
# Patch for Windows cross-compilation issue with crunchy
|
||||
[patch.crates-io]
|
||||
|
|
|
|||
|
|
@ -22,10 +22,10 @@ rmcp = { workspace = true }
|
|||
agent-client-protocol = "0.9.0"
|
||||
clap = { version = "4.4", features = ["derive"] }
|
||||
cliclack = "0.3.5"
|
||||
console = "0.15.8"
|
||||
console = "0.16.1"
|
||||
uuid = { version = "1.11", features = ["v4"] }
|
||||
dotenvy = "0.15.7"
|
||||
bat = "0.24.0"
|
||||
bat = "0.25.0"
|
||||
anyhow = "1.0"
|
||||
serde_json = "1.0"
|
||||
jsonschema = "0.30.0"
|
||||
|
|
@ -34,7 +34,7 @@ futures = "0.3"
|
|||
serde = { version = "1.0", features = ["derive"] } # For serialization
|
||||
serde_yaml = "0.9"
|
||||
tempfile = "3"
|
||||
etcetera = "0.8.0"
|
||||
etcetera = { workspace = true }
|
||||
rand = "0.8.5"
|
||||
rustyline = "15.0.0"
|
||||
tracing = "0.1"
|
||||
|
|
@ -52,8 +52,8 @@ tar = "0.4"
|
|||
axum = { version = "0.8.1", features = ["ws", "macros"] }
|
||||
tower-http = { version = "0.5", features = ["cors", "fs", "auth"] }
|
||||
http = "1.0"
|
||||
webbrowser = "1.0"
|
||||
indicatif = "0.17.11"
|
||||
webbrowser = {workspace = true}
|
||||
indicatif = "0.18.1"
|
||||
tokio-util = { version = "0.7.15", features = ["compat", "rt"] }
|
||||
is-terminal = "0.4.16"
|
||||
anstream = "0.6.18"
|
||||
|
|
|
|||
|
|
@ -34,15 +34,15 @@ reqwest = { version = "0.11", features = [
|
|||
], default-features = false }
|
||||
async-trait = "0.1.89"
|
||||
chrono = { version = "0.4.38", features = ["serde"] }
|
||||
etcetera = "0.8.0"
|
||||
etcetera = { workspace = true }
|
||||
tempfile = "3.8"
|
||||
include_dir = "0.7.4"
|
||||
webbrowser = "0.8"
|
||||
webbrowser = {workspace = true}
|
||||
http-body-util = "0.1.2"
|
||||
regex = "1.11.1"
|
||||
once_cell = "1.20.2"
|
||||
ignore = "0.4"
|
||||
lopdf = "0.35.0"
|
||||
ignore = { workspace = true }
|
||||
lopdf = "0.36.0"
|
||||
docx-rs = "0.4.7"
|
||||
image = "0.24.9"
|
||||
umya-spreadsheet = "2.2.3"
|
||||
|
|
@ -56,7 +56,7 @@ oauth2 = { version = "5.0.0", features = ["reqwest"] }
|
|||
utoipa = { version = "4.1", optional = true }
|
||||
hyper = "1"
|
||||
serde_with = "3"
|
||||
which = "6.0"
|
||||
which = {workspace = true}
|
||||
glob = "0.3"
|
||||
lru = "0.12"
|
||||
tree-sitter = "0.21"
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ anyhow = "1.0"
|
|||
bytes = "1.5"
|
||||
http = "1.0"
|
||||
base64 = "0.21"
|
||||
config = { version = "0.14.1", features = ["toml"] }
|
||||
config = { version = "0.15.13", features = ["toml"] }
|
||||
thiserror = "1.0"
|
||||
clap = { version = "4.4", features = ["derive"] }
|
||||
serde_yaml = "0.9.34"
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ uuid = { version = "1.0", features = ["v4"] }
|
|||
regex = "1.11.1"
|
||||
async-trait = "0.1.89"
|
||||
async-stream = "0.3"
|
||||
minijinja = { version = "2.10.2", features = ["loader"] }
|
||||
minijinja = { version = "2.12.0", features = ["loader"] }
|
||||
include_dir = "0.7.4"
|
||||
tiktoken-rs = "0.6.0"
|
||||
chrono = { version = "0.4.38", features = ["serde"] }
|
||||
|
|
@ -61,7 +61,7 @@ sha2 = "0.10"
|
|||
base64 = "0.21"
|
||||
url = "2.5"
|
||||
axum = "0.8.1"
|
||||
webbrowser = "0.8"
|
||||
webbrowser = {workspace = true}
|
||||
lazy_static = "1.5.0"
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = "0.3"
|
||||
|
|
@ -74,12 +74,12 @@ tonic = "0.12"
|
|||
keyring = { version = "3.6.2", features = ["apple-native", "windows-native", "sync-secret-service", "vendored"] }
|
||||
serde_yaml = "0.9.34"
|
||||
once_cell = "1.20.2"
|
||||
etcetera = "0.8.0"
|
||||
etcetera = { workspace = true }
|
||||
rand = "0.8.5"
|
||||
utoipa = { version = "4.1", features = ["chrono"] }
|
||||
tokio-cron-scheduler = "0.14.0"
|
||||
urlencoding = "2.1"
|
||||
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite", "chrono", "json"] }
|
||||
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "sqlite", "chrono", "json"] }
|
||||
|
||||
# For Bedrock provider
|
||||
aws-config = { version = "=1.8.12", features = ["behavior-version-latest"] }
|
||||
|
|
@ -110,8 +110,8 @@ paste = "1.0.0"
|
|||
posthog-rs = "0.3.7"
|
||||
shellexpand = "3.1.1"
|
||||
indexmap = "2.12.0"
|
||||
ignore = "0.4.25"
|
||||
which = "8.0.0"
|
||||
ignore = { workspace = true }
|
||||
which = { workspace = true}
|
||||
boa_engine = "0.21.0"
|
||||
boa_gc = "0.21"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue