Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into dependabot/github_act…
Browse files Browse the repository at this point in the history
…ions/actions/cache-4
  • Loading branch information
scsmithr committed Jan 19, 2024
2 parents 64de6a8 + b8eef6f commit f3582e6
Show file tree
Hide file tree
Showing 19 changed files with 90 additions and 105 deletions.
117 changes: 51 additions & 66 deletions Cargo.lock

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

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

[workspace.dependencies]
clap = { version = "4.4.16", features = ["derive"] }
clap = { version = "4.4.18", features = ["derive"] }
datafusion = { version = "32.0", features = ["avro"] }
arrow-flight = { version = "47.0.0", features = ["flight-sql-experimental"] }
datafusion-proto = { version = "32.0" }
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ datafusion_ext = { path = "../../crates/datafusion_ext" }
arrow_util = { path = "../../crates/arrow_util" }
glaredb = { path = "../../crates/glaredb" }
futures = { workspace = true }
uuid = "1.6.1"
uuid = "1.7.0"
async-trait = { workspace = true }
once_cell = "1.19.0"
2 changes: 1 addition & 1 deletion crates/catalog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ thiserror.workspace = true
tokio = { workspace = true }
tonic = { workspace = true }
tracing = { workspace = true }
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
uuid = { version = "1.7.0", features = ["v4", "fast-rng", "macro-diagnostics"] }

[dev-dependencies]
metastore = { path = "../metastore" }
2 changes: 1 addition & 1 deletion crates/datafusion_ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ serde_json = { workspace = true }
datafusion = { workspace = true }
async-trait = { workspace = true }
async-recursion = "1.0.4"
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
uuid = { version = "1.7.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
regex = "1.8"
once_cell = "1.19.0"
tracing = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/datasources/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ decimal = { path = "../decimal" }
deltalake = { workspace = true }
futures = { workspace = true }
gcp-bigquery-client = "0.18.0"
klickhouse = { version = "0.10.2", features = ["tls"] }
klickhouse = { version = "0.11.0", features = ["tls"] }
protogen = { path = "../protogen" }
datafusion_ext = { path = "../datafusion_ext" }
mongodb = "2.8.0"
Expand Down Expand Up @@ -59,7 +59,7 @@ tokio-postgres = { version = "0.7.8", features = [
parking_lot = "0.12.1"
tokio-rustls = "0.24.1"
tracing = { workspace = true }
uuid = "1.6.1"
uuid = "1.7.0"
url.workspace = true
webpki-roots = "0.26.0"
calamine = { version = "0.23.1", features = ["dates"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/glaredb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ nu-ansi-term = "0.49.0"
atty = "0.2.14"
console-subscriber = "0.2.0"
tokio-postgres = "0.7.8"
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
uuid = { version = "1.7.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
glob = "0.3.1"

[dev-dependencies]
predicates = "3.0.4"
predicates = "3.1.0"
assert_cmd = "2.0.13"
tokio-postgres = "0.7.8"
tempfile = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/metastore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ thiserror = { workspace = true }
tokio = { workspace = true }
tonic = { workspace = true }
tracing = { workspace = true }
uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
uuid = { version = "1.7.0", features = ["v4", "fast-rng", "macro-diagnostics"] }
bytes = "1.4"
once_cell = "1.19.0"
proptest-derive = "0.4"
Expand Down
Loading

0 comments on commit f3582e6

Please sign in to comment.