Skip to content

Commit

Permalink
chore(deps): Bump deps (#2297)
Browse files Browse the repository at this point in the history
- Closes #2296
- Closes #2295
- Closes #2294
- Closes #2293
- Closes #2292
- Closes #2291
- Closes #2290
- Closes #2289

Also moves reqwest into the workspace cargo.toml.

---------

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 Dec 22, 2023
1 parent 8f6f402 commit 04d3cd3
Show file tree
Hide file tree
Showing 18 changed files with 141 additions and 75 deletions.
165 changes: 115 additions & 50 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ codegen-units = 1
strip = true

[workspace.dependencies]
async-trait = "0.1.75"
datafusion = { version = "32.0", features = ["avro"] }
datafusion-proto = { version = "32.0" }
object_store = { version = "0.7" }
Expand All @@ -23,10 +24,11 @@ thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.108"
chrono = "0.4.31"
anyhow = "1.0.72"
anyhow = "1.0.76"
prost = "0.12"
prost-types = "0.12"
prost-build = "0.12"
reqwest = { version = "0.11.23", default-features = false, features = ["json", "rustls-tls"] }
tonic = { version = "0.10", features = ["transport", "tls", "tls-roots"] }
tempfile = "3.8.1"

Expand Down
2 changes: 1 addition & 1 deletion bindings/nodejs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ thiserror = { workspace = true }
url = { workspace = true }
anyhow = { workspace = true }
once_cell = "1.19.0"
async-trait = "0.1.72"
async-trait = { workspace = true }
bytes = "1.5.0"
serde.workspace = true
serde_json.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ arrow_util = { path = "../../crates/arrow_util" }
glaredb = { path = "../../crates/glaredb" }
futures = "0.3.29"
uuid = "1.6.1"
async-trait = "0.1.74"
async-trait = { workspace = true }
once_cell = "1.19.0"
2 changes: 1 addition & 1 deletion crates/bench_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tokio = { workspace = true }
tokio-postgres = "0.7.8"
anyhow = "1.0"
clap = { version = "4.4.11", features = ["derive"] }
async-trait = "0.1.74"
async-trait = { workspace = true }
glob = "0.3.1"
regex = "1.8.1"
tracing = "0.1"
2 changes: 1 addition & 1 deletion crates/datafusion_ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ telemetry = { path = "../telemetry" }
catalog = { path = "../catalog" }
serde_json = { workspace = true }
datafusion = { workspace = true }
async-trait = "0.1.74"
async-trait = { workspace = true }
async-recursion = "1.0.4"
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
regex = "1.8"
Expand Down
8 changes: 4 additions & 4 deletions crates/datasources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ioutil = { path = "../ioutil" }
apache-avro = "0.16"
async-channel = "2.1.1"
async-stream = "0.3.5"
async-trait = "0.1.74"
async-trait = { workspace = true }
bigquery-storage = { git = "https://github.com/glaredb/bigquery-storage", branch = "deps/2023-10-27-update" }
bitflags = "2.4"
bitvec = "1"
Expand All @@ -36,7 +36,7 @@ regex = "1.9.1"
repr = { path = "../repr" }
ring = "0.17.7"
rustls = "0.21.10"
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls-tls"] }
reqwest = { workspace = true }
rust_decimal = { version = "1.33.1", features = ["db-tokio-postgres"] }
serde = { workspace = true }
serde_bytes = "0.11.12"
Expand All @@ -56,11 +56,11 @@ uuid = "1.6.1"
url.workspace = true
webpki-roots = "0.26.0"
dashmap = "5.5.0"
calamine = { version = "0.23.0", features = ["dates"] }
calamine = { version = "0.23.1", features = ["dates"] }
tiberius = { version = "0.12.2", default-features = false, features = ["tds73", "rustls", "chrono"] }
lance = { git = "https://github.com/universalmind303/lance", rev = "81158eb540ff88ab5b4fce3a1170447760137412" }
bson = "2.7.0"

# SSH tunnels
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
openssh = "0.10.1"
openssh = "0.10.2"
2 changes: 1 addition & 1 deletion crates/ioutil/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = {workspace = true}

[dependencies]
bytes = "1.4.0"
home = "0.5.5"
home = "0.5.9"
2 changes: 1 addition & 1 deletion crates/metastore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ prost-types = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tracing = "0.1"
async-trait = "0.1.74"
async-trait = { workspace = true }
datafusion = { workspace = true }
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
bytes = "1.4"
Expand Down
2 changes: 1 addition & 1 deletion crates/object_store_util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ logutil = { path = "../logutil" }
object_store = { workspace = true }
tempfile = "3"
futures = "0.3.29"
async-trait = "0.1.74"
async-trait = { workspace = true }
thiserror.workspace = true
tokio = { workspace = true }
bytes = "1.4.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/pgsrv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ datafusion_ext = {path = "../datafusion_ext"}
thiserror = { workspace = true }
tracing = "0.1"
futures = "0.3.29"
async-trait = "0.1.74"
async-trait = { workspace = true }
datafusion = { workspace = true }
tokio-util = { version = "0.7.10", features = ["codec"] }
bytes = "1.4.0"
tokio = { workspace = true }
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls-tls"] }
reqwest = { workspace = true }
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
tokio-postgres = "0.7.8"
rustls = "0.21.10"
Expand Down
4 changes: 2 additions & 2 deletions crates/proxyutil/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ serde = { workspace = true }
thiserror = { workspace = true }
tracing = "0.1"
futures = "0.3.29"
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls-tls"] }
async-trait = "0.1.74"
reqwest = { workspace = true }
async-trait = { workspace = true }
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
serde_json = { workspace = true }
2 changes: 1 addition & 1 deletion crates/rpcsrv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ protogen = { path = "../protogen" }
once_cell = "1.19.0"
tokio = { workspace = true }
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
async-trait = "0.1.74"
async-trait = { workspace = true }
tracing = "0.1"
thiserror = { workspace = true }
prost = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/snowflake_connector/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = { workspace = true }

[dependencies]
thiserror.workspace = true
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls-tls"] }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tracing = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/sqlbuiltins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ decimal = { path = "../decimal" }
thiserror.workspace = true
tokio = { workspace = true }
serde = { workspace = true }
async-trait = "0.1.74"
async-trait = { workspace = true }
serde_json = { workspace = true }
datafusion = { workspace = true }
futures = "0.3.29"
Expand Down
4 changes: 2 additions & 2 deletions crates/sqlexec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dashmap = "5.5.0"
metastore = { path = "../metastore" }
thiserror.workspace = true
tokio = { workspace = true }
async-trait = "0.1.74"
async-trait = { workspace = true }
serde_json = { workspace = true }
datafusion = { workspace = true }
datafusion-proto = { workspace = true }
Expand All @@ -39,7 +39,7 @@ url.workspace = true
parking_lot = "0.12.1"
serde = { workspace = true }
itertools = "0.12.0"
reqwest = { version = "0.11.22", default-features = false, features = ["json"] }
reqwest = { workspace = true }
prql-compiler = "0.10.1"
num_cpus = "1.16.0"
async-channel = "2.1.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ tokio-postgres = "0.7.8"
tempfile = "3"
sqllogictest = "0.19.0"
object_store = { workspace = true, features = ["gcp"] }
async-trait = "0.1.74"
async-trait = { workspace = true }
regex = "1.8.1"
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
openssh = "0.10.1"
openssh = "0.10.2"
futures = "0.3.29"
ioutil = { path = "../ioutil" }
logutil = { path = "../logutil" }
Expand Down
3 changes: 1 addition & 2 deletions xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.72"
anyhow = "1.0.76"
clap = { version = "4.4.11", features = ["derive"] }
reqwest = { version = "0.11.22", default-features = false, features = ["json", "rustls-tls", "blocking"] }
xshell = "0.2.5"
zip = "0.6.6"

0 comments on commit 04d3cd3

Please sign in to comment.