Skip to content

Commit

Permalink
chore(deps): Bump deps (#3424)
Browse files Browse the repository at this point in the history
- Closes #3417
- Closes #3418
- Closes #3419
- Closes #3421
- Closes #3422
- Closes #3423

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
scsmithr and dependabot[bot] authored Feb 8, 2025
1 parent 8c0bc06 commit 5b0205c
Show file tree
Hide file tree
Showing 9 changed files with 91 additions and 51 deletions.
121 changes: 82 additions & 39 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ ahash = { version = "0.8.11", default-features = false }
chrono = { version = "0.4.39" }
futures = "0.3.30"
hashbrown = "0.14.5"
once_cell = "1.19.0"
parking_lot = "0.12"
rand = "0.8.5"
smallvec = "1.13.2"
Expand All @@ -30,7 +29,7 @@ url = "2.5.1"
serde = { version = "1.0.217", features = ["derive", "rc"] }
erased-serde = "0.4.5"
serde_json = { version = "1.0", features = ["std"] }
bytes = "1.6.0"
bytes = "1.10.0"
uuid = { version = "1.12.1", features = ["v4"] }
scc = "2.3.0"
scc = "2.3.3"
half = { version = "2.4.1", features = ["num-traits", "serde"] }
2 changes: 1 addition & 1 deletion crates/parquet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ rust-version = "1.70.0"
rayexec_error = { path = "../rayexec_error" }
rayexec_execution = { path = "../rayexec_execution" }
ahash = { workspace = true }
bytes = { version = "1.1", default-features = false, features = ["std"] }
bytes = { version = "1.10", default-features = false, features = ["std"] }
thrift = { version = "0.17", default-features = false }
snap = { version = "1.0", default-features = false, optional = true }
brotli = { version = "6.0", default-features = false, features = ["std"], optional = true }
Expand Down
3 changes: 1 addition & 2 deletions crates/rayexec_execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@ fmtutil = { path = "../fmtutil" }
# stackutil = { path = "../stackutil" } TODO: psm hash issues when compiling to wasm on macos

ahash = { workspace = true }
dyn-clone = "1.0.17"
dyn-clone = "1.0.18"
chrono = { workspace = true }
futures = { workspace = true }
hashbrown = { workspace = true, features = ["raw"] }
num-traits = "0.2.19"
num = "0.4.3"
num_cpus = "1.16.0"
once_cell = { workspace = true }
parking_lot = { workspace = true }
rayon = { workspace = true }
smallvec = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rayexec_io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ futures = { workspace = true }
tracing = { workspace = true }
reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls", "stream"] }
url = { workspace = true, features = ["serde"] }
bytes = { version = "1.1", default-features = false, features = ["std"] }
bytes = { version = "1.10", default-features = false, features = ["std"] }
serde = { workspace = true }
serde_json = { workspace = true }
parking_lot = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rayexec_postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition.workspace = true
rayexec_proto = { path = '../rayexec_proto' }
rayexec_execution = { path = '../rayexec_execution' }
rayexec_error = { path = '../rayexec_error' }
tokio-postgres = { version = "0.7.10" }
tokio-postgres = { version = "0.7.13" }
futures = { workspace = true }
tracing = { workspace = true }
serde = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rayexec_rt_native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ futures = { workspace = true }
parking_lot = { workspace = true }
num_cpus = { workspace = true }
url = { workspace = true }
bytes = { version = "1.1", default-features = false, features = ["std"] }
bytes = { version = "1.10", default-features = false, features = ["std"] }
reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls", "stream"] }
2 changes: 1 addition & 1 deletion crates/rayexec_slt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ libtest-mimic = "0.7.3"
sqllogictest = "0.20.4"
env_logger = "0.11.6"
futures = { workspace = true, features = ["executor"] }
async-trait = "0.1.85"
async-trait = "0.1.86"
tokio = { version = "1", features = ["full"] }
tracing = { workspace = true }
tracing-subscriber = {version = "0.3", features = ["std", "fmt", "json", "env-filter"] }
Expand Down
3 changes: 1 addition & 2 deletions crates/rayexec_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,5 @@ getrandom = { version = "0.2", features = ["js"] }
tokio = { workspace = true, default-features = false, features = [ "rt" ] } # TODO: Remove tokio from runtime interface
console_error_panic_hook = "0.1.7"
url = { workspace = true }
bytes = { version = "1.1", default-features = false, features = ["std"] }
bytes = { version = "1.10", default-features = false, features = ["std"] }
reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls", "stream"] }
once_cell = { workspace = true }

0 comments on commit 5b0205c

Please sign in to comment.