diff --git a/core/wren-core/Cargo.toml b/core/wren-core/Cargo.toml index 5bb6eb8bf6..0476ed6a79 100644 --- a/core/wren-core/Cargo.toml +++ b/core/wren-core/Cargo.toml @@ -14,7 +14,7 @@ version = "0.3.2" [workspace.dependencies] async-trait = "0.1.89" -datafusion = { version = "53", default-features = false, features = [ +datafusion = { version = "55", default-features = false, features = [ "nested_expressions", "crypto_expressions", "datetime_expressions", @@ -24,7 +24,7 @@ datafusion = { version = "53", default-features = false, features = [ "parquet", "sql", ] } -datafusion-session = { version = "53", default-features = false } +datafusion-session = { version = "55", default-features = false } env_logger = "0.11.10" hashbrown = "0.17.0" insta = { version = "1.41.1" } diff --git a/core/wren-core/core/Cargo.toml b/core/wren-core/core/Cargo.toml index 06fd4ab11f..9a6481173d 100644 --- a/core/wren-core/core/Cargo.toml +++ b/core/wren-core/core/Cargo.toml @@ -35,7 +35,7 @@ datafusion = { workspace = true, features = [ ] } datafusion-session = { workspace = true } -itertools = "0.14.0" +itertools = "0.15.0" log = { workspace = true } parking_lot = "0.12.3" petgraph = "0.8.2" diff --git a/core/wren-core/sqllogictest/Cargo.toml b/core/wren-core/sqllogictest/Cargo.toml index 5cfa4b9d86..8f0ce2963f 100644 --- a/core/wren-core/sqllogictest/Cargo.toml +++ b/core/wren-core/sqllogictest/Cargo.toml @@ -20,13 +20,13 @@ datafusion = { workspace = true, default-features = true } half = { version = "2.4.1", default-features = true } log = { workspace = true } rust_decimal = { version = "1.27.0" } -sqllogictest = "0.28.4" +sqllogictest = "0.29.1" thiserror = "2.0.3" tokio = { workspace = true } wren-core = { path = "../core", package = "wren-semantic-core" } -itertools = "0.14.0" -object_store = { version = "0.12.3", default-features = false } +itertools = "0.15.0" +object_store = { version = "0.14.1", default-features = false } clap = { version = "4.4.8", features = ["derive", "env"] } futures = "0.3.17"