diff --git a/Cargo.lock b/Cargo.lock index b8c79a1703713..6de1d6c0fcd99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8797,7 +8797,8 @@ dependencies = [ [[package]] name = "iceberg" version = "0.3.0" -source = "git+https://github.com/apache/iceberg-rust?rev=v0.3.0-rc.1#79711acc921b4d25c3583bc0ea9628fe64a057e1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "651dfca7c429918e164607a549287cfdd1e7814d2e4cb577d0d6dc57fe19b785" dependencies = [ "anyhow", "apache-avro", @@ -8839,7 +8840,8 @@ dependencies = [ [[package]] name = "iceberg-catalog-hms" version = "0.3.0" -source = "git+https://github.com/apache/iceberg-rust?rev=v0.3.0-rc.1#79711acc921b4d25c3583bc0ea9628fe64a057e1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a04f1f48f0f15e42c910fafb57edb0dd309c936cd285b1089fa3d4a07d1ef09" dependencies = [ "anyhow", "async-trait", @@ -8858,7 +8860,8 @@ dependencies = [ [[package]] name = "iceberg-catalog-rest" version = "0.3.0" -source = "git+https://github.com/apache/iceberg-rust?rev=v0.3.0-rc.1#79711acc921b4d25c3583bc0ea9628fe64a057e1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f351c7b964fa6f3b4f976f8de3f16f1bf84eea8478606aaebdfd6a871d6b082c" dependencies = [ "async-trait", "chrono", diff --git a/Cargo.toml b/Cargo.toml index b15e7fb48b5eb..01c9cbd581e69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -287,6 +287,9 @@ parking_lot = "0.12.1" parquet = { version = "52", features = ["async"] } paste = "1.0.15" # TODO: let's use native tls instead. +iceberg = { version = "0.3.0" } +iceberg-catalog-hms = { version = "0.3.0" } +iceberg-catalog-rest = { version = "0.3.0" } poem = { version = "3.0", features = ["openssl-tls", "multipart", "compression"] } proj4rs = { version = "0.1.3", features = ["geo-types", "crs-definitions"] } prometheus-client = "0.22" diff --git a/src/query/storages/iceberg/Cargo.toml b/src/query/storages/iceberg/Cargo.toml index b6ce09873b467..474c518cd1810 100644 --- a/src/query/storages/iceberg/Cargo.toml +++ b/src/query/storages/iceberg/Cargo.toml @@ -26,9 +26,9 @@ databend-common-storages-parquet = { workspace = true } databend-storages-common-pruner = { workspace = true } databend-storages-common-table-meta = { workspace = true } fastrace = { workspace = true } -iceberg = { git = "https://github.com/apache/iceberg-rust", package = "iceberg", rev = "v0.3.0-rc.1" } -iceberg-catalog-hms = { git = "https://github.com/apache/iceberg-rust", package = "iceberg-catalog-hms", rev = "v0.3.0-rc.1" } -iceberg-catalog-rest = { git = "https://github.com/apache/iceberg-rust", package = "iceberg-catalog-rest", rev = "v0.3.0-rc.1" } +iceberg = { workspace = true } +iceberg-catalog-hms = { workspace = true } +iceberg-catalog-rest = { workspace = true } match-template = { workspace = true } parquet = { workspace = true } serde = { workspace = true }