diff --git a/Cargo.lock b/Cargo.lock index 7674c17d0..0542cd2ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2266,9 +2266,9 @@ dependencies = [ [[package]] name = "object_store" -version = "0.12.4" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c1be0c6c22ec0817cdc77d3842f721a17fd30ab6965001415b5402a74e6b740" +checksum = "d180d5469872facb82dec7e233ff850d615330ea3044a7813550b22ffa4f05ce" dependencies = [ "async-trait", "base64 0.22.1", @@ -2289,7 +2289,7 @@ dependencies = [ "rand", "reqwest", "ring", - "rustls-pemfile 2.2.0", + "rustls-pki-types", "serde", "serde_json", "serde_urlencoded", @@ -2991,7 +2991,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" dependencies = [ "openssl-probe", - "rustls-pemfile 1.0.4", + "rustls-pemfile", "schannel", "security-framework 2.11.1", ] @@ -3017,15 +3017,6 @@ dependencies = [ "base64 0.21.7", ] -[[package]] -name = "rustls-pemfile" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" -dependencies = [ - "rustls-pki-types", -] - [[package]] name = "rustls-pki-types" version = "1.13.0" diff --git a/icechunk/Cargo.toml b/icechunk/Cargo.toml index 7fcba8607..5916fce92 100644 --- a/icechunk/Cargo.toml +++ b/icechunk/Cargo.toml @@ -18,7 +18,7 @@ bytes = { version = "1.10.1", features = ["serde"] } base64 = "0.22.1" futures = "0.3.31" itertools = "0.14.0" -object_store = { version = "0.12.4", features = [ +object_store = { version = "0.13.0", features = [ "aws", "gcp", "azure", diff --git a/icechunk/src/storage/object_store.rs b/icechunk/src/storage/object_store.rs index 83164d19f..4459296dd 100644 --- a/icechunk/src/storage/object_store.rs +++ b/icechunk/src/storage/object_store.rs @@ -15,8 +15,9 @@ use futures::{ }; use object_store::{ Attribute, AttributeValue, Attributes, BackoffConfig, ClientConfigKey, - CredentialProvider, GetOptions, ObjectMeta, ObjectStore, PutMode, PutOptions, - PutPayload, RetryConfig, StaticCredentialProvider, UpdateVersion, + CredentialProvider, GetOptions, ObjectMeta, ObjectStore, ObjectStoreExt as _, + PutMode, PutOptions, PutPayload, RetryConfig, StaticCredentialProvider, + UpdateVersion, aws::AmazonS3Builder, azure::{AzureConfigKey, MicrosoftAzureBuilder}, gcp::{GcpCredential, GoogleCloudStorageBuilder, GoogleConfigKey},