Update dependencies to help in Fedora packaging (#5835)
Signed-off-by: Rodolfo Olivieri <rodolfo.olivieri3@gmail.com> Co-authored-by: Jack Amadeo <jackamadeo@squareup.com>
This commit is contained in:
Generated
+336
-168
File diff suppressed because it is too large
Load Diff
@@ -16,6 +16,10 @@ string_slice = "warn"
|
|||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
rmcp = { version = "0.9.1", features = ["schemars", "auth"] }
|
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 for Windows cross-compilation issue with crunchy
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
|
|||||||
@@ -22,10 +22,10 @@ rmcp = { workspace = true }
|
|||||||
agent-client-protocol = "0.9.0"
|
agent-client-protocol = "0.9.0"
|
||||||
clap = { version = "4.4", features = ["derive"] }
|
clap = { version = "4.4", features = ["derive"] }
|
||||||
cliclack = "0.3.5"
|
cliclack = "0.3.5"
|
||||||
console = "0.15.8"
|
console = "0.16.1"
|
||||||
uuid = { version = "1.11", features = ["v4"] }
|
uuid = { version = "1.11", features = ["v4"] }
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
bat = "0.24.0"
|
bat = "0.25.0"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
jsonschema = "0.30.0"
|
jsonschema = "0.30.0"
|
||||||
@@ -34,7 +34,7 @@ futures = "0.3"
|
|||||||
serde = { version = "1.0", features = ["derive"] } # For serialization
|
serde = { version = "1.0", features = ["derive"] } # For serialization
|
||||||
serde_yaml = "0.9"
|
serde_yaml = "0.9"
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
etcetera = "0.8.0"
|
etcetera = { workspace = true }
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
rustyline = "15.0.0"
|
rustyline = "15.0.0"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
@@ -52,8 +52,8 @@ tar = "0.4"
|
|||||||
axum = { version = "0.8.1", features = ["ws", "macros"] }
|
axum = { version = "0.8.1", features = ["ws", "macros"] }
|
||||||
tower-http = { version = "0.5", features = ["cors", "fs", "auth"] }
|
tower-http = { version = "0.5", features = ["cors", "fs", "auth"] }
|
||||||
http = "1.0"
|
http = "1.0"
|
||||||
webbrowser = "1.0"
|
webbrowser = {workspace = true}
|
||||||
indicatif = "0.17.11"
|
indicatif = "0.18.1"
|
||||||
tokio-util = { version = "0.7.15", features = ["compat", "rt"] }
|
tokio-util = { version = "0.7.15", features = ["compat", "rt"] }
|
||||||
is-terminal = "0.4.16"
|
is-terminal = "0.4.16"
|
||||||
anstream = "0.6.18"
|
anstream = "0.6.18"
|
||||||
|
|||||||
@@ -34,15 +34,15 @@ reqwest = { version = "0.11", features = [
|
|||||||
], default-features = false }
|
], default-features = false }
|
||||||
async-trait = "0.1.89"
|
async-trait = "0.1.89"
|
||||||
chrono = { version = "0.4.38", features = ["serde"] }
|
chrono = { version = "0.4.38", features = ["serde"] }
|
||||||
etcetera = "0.8.0"
|
etcetera = { workspace = true }
|
||||||
tempfile = "3.8"
|
tempfile = "3.8"
|
||||||
include_dir = "0.7.4"
|
include_dir = "0.7.4"
|
||||||
webbrowser = "0.8"
|
webbrowser = {workspace = true}
|
||||||
http-body-util = "0.1.2"
|
http-body-util = "0.1.2"
|
||||||
regex = "1.11.1"
|
regex = "1.11.1"
|
||||||
once_cell = "1.20.2"
|
once_cell = "1.20.2"
|
||||||
ignore = "0.4"
|
ignore = { workspace = true }
|
||||||
lopdf = "0.35.0"
|
lopdf = "0.36.0"
|
||||||
docx-rs = "0.4.7"
|
docx-rs = "0.4.7"
|
||||||
image = "0.24.9"
|
image = "0.24.9"
|
||||||
umya-spreadsheet = "2.2.3"
|
umya-spreadsheet = "2.2.3"
|
||||||
@@ -56,7 +56,7 @@ oauth2 = { version = "5.0.0", features = ["reqwest"] }
|
|||||||
utoipa = { version = "4.1", optional = true }
|
utoipa = { version = "4.1", optional = true }
|
||||||
hyper = "1"
|
hyper = "1"
|
||||||
serde_with = "3"
|
serde_with = "3"
|
||||||
which = "6.0"
|
which = {workspace = true}
|
||||||
glob = "0.3"
|
glob = "0.3"
|
||||||
lru = "0.12"
|
lru = "0.12"
|
||||||
tree-sitter = "0.21"
|
tree-sitter = "0.21"
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ anyhow = "1.0"
|
|||||||
bytes = "1.5"
|
bytes = "1.5"
|
||||||
http = "1.0"
|
http = "1.0"
|
||||||
base64 = "0.21"
|
base64 = "0.21"
|
||||||
config = { version = "0.14.1", features = ["toml"] }
|
config = { version = "0.15.13", features = ["toml"] }
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
clap = { version = "4.4", features = ["derive"] }
|
clap = { version = "4.4", features = ["derive"] }
|
||||||
serde_yaml = "0.9.34"
|
serde_yaml = "0.9.34"
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ uuid = { version = "1.0", features = ["v4"] }
|
|||||||
regex = "1.11.1"
|
regex = "1.11.1"
|
||||||
async-trait = "0.1.89"
|
async-trait = "0.1.89"
|
||||||
async-stream = "0.3"
|
async-stream = "0.3"
|
||||||
minijinja = { version = "2.10.2", features = ["loader"] }
|
minijinja = { version = "2.12.0", features = ["loader"] }
|
||||||
include_dir = "0.7.4"
|
include_dir = "0.7.4"
|
||||||
tiktoken-rs = "0.6.0"
|
tiktoken-rs = "0.6.0"
|
||||||
chrono = { version = "0.4.38", features = ["serde"] }
|
chrono = { version = "0.4.38", features = ["serde"] }
|
||||||
@@ -61,7 +61,7 @@ sha2 = "0.10"
|
|||||||
base64 = "0.21"
|
base64 = "0.21"
|
||||||
url = "2.5"
|
url = "2.5"
|
||||||
axum = "0.8.1"
|
axum = "0.8.1"
|
||||||
webbrowser = "0.8"
|
webbrowser = {workspace = true}
|
||||||
lazy_static = "1.5.0"
|
lazy_static = "1.5.0"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = "0.3"
|
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"] }
|
keyring = { version = "3.6.2", features = ["apple-native", "windows-native", "sync-secret-service", "vendored"] }
|
||||||
serde_yaml = "0.9.34"
|
serde_yaml = "0.9.34"
|
||||||
once_cell = "1.20.2"
|
once_cell = "1.20.2"
|
||||||
etcetera = "0.8.0"
|
etcetera = { workspace = true }
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
utoipa = { version = "4.1", features = ["chrono"] }
|
utoipa = { version = "4.1", features = ["chrono"] }
|
||||||
tokio-cron-scheduler = "0.14.0"
|
tokio-cron-scheduler = "0.14.0"
|
||||||
urlencoding = "2.1"
|
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
|
# For Bedrock provider
|
||||||
aws-config = { version = "=1.8.12", features = ["behavior-version-latest"] }
|
aws-config = { version = "=1.8.12", features = ["behavior-version-latest"] }
|
||||||
@@ -110,8 +110,8 @@ paste = "1.0.0"
|
|||||||
posthog-rs = "0.3.7"
|
posthog-rs = "0.3.7"
|
||||||
shellexpand = "3.1.1"
|
shellexpand = "3.1.1"
|
||||||
indexmap = "2.12.0"
|
indexmap = "2.12.0"
|
||||||
ignore = "0.4.25"
|
ignore = { workspace = true }
|
||||||
which = "8.0.0"
|
which = { workspace = true}
|
||||||
boa_engine = "0.21.0"
|
boa_engine = "0.21.0"
|
||||||
boa_gc = "0.21"
|
boa_gc = "0.21"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user