Skip to content

Commit

Permalink
chore(deps): upgrade batch (#3233)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
tychoish and dependabot[bot] authored Oct 4, 2024
1 parent b9bd87f commit b40d4d9
Show file tree
Hide file tree
Showing 9 changed files with 209 additions and 191 deletions.
370 changes: 194 additions & 176 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ wildcard_imports = "deny"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(release)'] }

[workspace.dependencies]
clap = { version = "4.5.18", features = ["derive"] }
clap = { version = "4.5.19", features = ["derive"] }
datafusion = { version = "36.0.0", features = ["avro"] }
arrow-flight = { version = "50.0.0", features = ["flight-sql-experimental"] }
datafusion-proto = { version = "36.0.0" }
reqwest = { version = "0.12.7", default-features = false, features = [
reqwest = { version = "0.12.8", default-features = false, features = [
"json",
"rustls-tls",
] }
Expand All @@ -39,9 +39,9 @@ object_store = "0.9"
prost = "0.12"
prost-build = "0.12"
prost-types = "0.12"
rustls = "0.23.13"
rustls = "0.23.14"
serde_json = "1.0.128"
tempfile = "3.12.0"
tempfile = "3.13.0"
thiserror = "1.0"
tracing = "0.1"
url = "2.5.2"
Expand Down
2 changes: 1 addition & 1 deletion crates/bench_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ tokio = { workspace = true }
tracing = { workspace = true }
tokio-postgres = "0.7.12"
glob = "0.3.1"
regex = "1.10.6"
regex = "1.11.0"
4 changes: 2 additions & 2 deletions crates/datafusion_ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ thiserror.workspace = true
futures = { workspace = true }
uuid = { version = "1.10.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
async-recursion = "1.1.1"
regex = "1.10"
regex = "1.11"
once_cell = "1.19.0"
parking_lot = "0.12.3"
bson = "2.13.0"
Expand All @@ -39,4 +39,4 @@ ctor = "0.2.8"
env_logger = "0.11"
paste = "^1.0"
rand = "0.8.5"
rstest = "0.22"
rstest = "0.23"
8 changes: 4 additions & 4 deletions crates/datasources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,21 @@ url = { workspace = true }
apache-avro = "0.16"
async-channel = "2.3.1"
async-sqlite = "0.3.0"
async-stream = "0.3.5"
async-stream = "0.3.6"
bitvec = "1"
bson = "2.13.0"
chrono-tz = "0.9"
gcp-bigquery-client = "0.23.0"
glob = "0.3.1"
mongodb = "3.1.0"
indexmap = "2.5.0"
indexmap = "2.6.0"
once_cell = "1.19.0"
parking_lot = "0.12.3"
rand = "0.8.5"
regex = "1.10.6"
regex = "1.11.0"
ring = "0.17.8"
scylla = "0.14.0"
serde_with = "3.9.0"
serde_with = "3.10.0"
tokio-postgres-rustls = "0.12.0"
tokio-rustls = "0.26.0"
tokio-util = "0.7.12"
Expand Down
2 changes: 1 addition & 1 deletion crates/decimal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ doctest = false
[dependencies]
thiserror.workspace = true
num-traits = "0.2.19"
regex = "1.10.6"
regex = "1.11.0"
2 changes: 1 addition & 1 deletion crates/glaredb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ futures = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
derive_builder = "0.20.1"
indexmap = "2.5.0"
indexmap = "2.6.0"

[dev-dependencies]
tokio = { workspace = true }
2 changes: 1 addition & 1 deletion crates/pgsrv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pgrepr = { path = "../pgrepr" }
proxyutil = { path = "../proxyutil" }
sqlexec = { path = "../sqlexec" }
once_cell = "1.19.0"
rustls-pemfile = "2.1.3"
rustls-pemfile = "2.2.0"
tokio-postgres = "0.7.12"
tokio-rustls = "0.26.0"
tokio-util = { version = "0.7.12", features = ["codec"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/slt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ telemetry = { path = "../telemetry" }
uuid = { version = "1.10", features = ["v4", "fast-rng", "macro-diagnostics"] }
glob = "0.3.1"
once_cell = "1.19.0"
regex = "1.10.6"
regex = "1.11.0"
sqllogictest = "0.22.0"
tokio-postgres = "0.7.12"
walkdir = "2.5.0"

0 comments on commit b40d4d9

Please sign in to comment.