Skip to content

Commit e688e65

Browse files
committed
use datafusion crypto_expressions
1 parent f16f3db commit e688e65

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ datafusion-sql = "40.0.0"
2626
datafusion-expr = "40.0.0"
2727
datafusion-common = "40.0.0"
2828
datafusion-execution = "40.0.0"
29-
datafusion-functions = { version = "40.0.0", features = ["sha2", "md-5"] }
29+
datafusion-functions = { version = "40.0.0", features = ["crypto_expressions"] }
3030
datafusion-functions-aggregate = "40.0.0"
3131
datafusion-functions-array = "40.0.0"
3232
parquet = { version = "52.1.0", features = ["async", "object_store"] }

datafusion-iceberg-sql/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "datafusion-iceberg-sql"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
edition = "2021"
55

66
description = "Apache Iceberg integration for Datafusion"
@@ -10,7 +10,7 @@ license = "Apache-2.0"
1010
repository = "https://github.com/JanKaul/iceberg-rust"
1111

1212
[dependencies]
13-
iceberg-rust = { path = "../iceberg-rust", version = "0.5.5" }
13+
iceberg-rust = { path = "../iceberg-rust", version = "0.5.6" }
1414
datafusion-sql.workspace = true
1515
datafusion-expr.workspace = true
1616
datafusion-common.workspace = true

datafusion_iceberg/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "datafusion_iceberg"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
edition = "2021"
55

66
description = "Datafusion integration for Iceberg table format"
@@ -18,7 +18,7 @@ datafusion = { workspace = true }
1818
datafusion-expr = { workspace = true }
1919
chrono = { workspace = true }
2020
object_store = { workspace = true }
21-
iceberg-rust = { path = "../iceberg-rust", version = "0.5.5" }
21+
iceberg-rust = { path = "../iceberg-rust", version = "0.5.6" }
2222
itertools = { workspace = true }
2323
dashmap = "5.4.0"
2424
uuid = { workspace = true }

iceberg-rest-catalog/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iceberg-rest-catalog"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
authors = ["Jan Kaul"]
55
description = "REST catalog for the unofficial Iceberg table format implementation"
66
license = "Apache-2.0"
@@ -14,7 +14,7 @@ serde_json.workspace = true
1414
url.workspace = true
1515
uuid.workspace = true
1616
reqwest-middleware = "0.2.0"
17-
iceberg-rust = { path = "../iceberg-rust", version = "0.5.5" }
17+
iceberg-rust = { path = "../iceberg-rust", version = "0.5.6" }
1818
object_store.workspace = true
1919
async-trait = "0.1.80"
2020
futures.workspace = true

iceberg-rust-spec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iceberg-rust-spec"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
edition = "2021"
55

66
license = "Apache-2.0"

iceberg-rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iceberg-rust"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
edition = "2021"
55

66
description = "Unofficial rust implementation of the Iceberg table format"
@@ -29,5 +29,5 @@ sqlparser = { workspace = true }
2929
thrift = { version = "0.17.0", default-features = false }
3030
thiserror = { workspace = true }
3131
derive-getters = { workspace = true }
32-
iceberg-rust-spec = { path = "../iceberg-rust-spec", version = "0.5.5" }
32+
iceberg-rust-spec = { path = "../iceberg-rust-spec", version = "0.5.6" }
3333

iceberg-sql-catalog/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iceberg-sql-catalog"
3-
version = "0.5.5"
3+
version = "0.5.6"
44
edition = "2021"
55

66
description = "Sql catalog for the unofficial Iceberg table format implementation"
@@ -12,7 +12,7 @@ repository = "https://github.com/JanKaul/iceberg-rust"
1212
[dependencies]
1313
async-trait.workspace = true
1414
futures.workspace = true
15-
iceberg-rust = { path = "../iceberg-rust", version = "0.5.5" }
15+
iceberg-rust = { path = "../iceberg-rust", version = "0.5.6" }
1616
object_store.workspace = true
1717
serde_json.workspace = true
1818
sqlx = { version = "0.8", features = ["tls-rustls", "any", "sqlite", "postgres", "mysql"], default-features = false }

0 commit comments

Comments
 (0)