diff --git a/python/Cargo.lock b/python/Cargo.lock index 569a962..6b21dea 100644 --- a/python/Cargo.lock +++ b/python/Cargo.lock @@ -47,7 +47,7 @@ dependencies = [ "lerc", "lzma-rust2", "num_enum", - "object_store", + "object_store 0.13.1", "reqwest 0.13.2", "thiserror 2.0.18", "tokio", @@ -1034,9 +1034,9 @@ dependencies = [ [[package]] name = "object_store" -version = "0.13.1" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2858065e55c148d294a9f3aae3b0fa9458edadb41a108397094566f4e3c0dfb" +checksum = "fbfbfff40aeccab00ec8a910b57ca8ecf4319b335c542f2edcd19dd25a1e2a00" dependencies = [ "async-trait", "base64", @@ -1057,7 +1057,7 @@ dependencies = [ "rand", "reqwest 0.12.28", "ring", - "rustls-pki-types", + "rustls-pemfile", "serde", "serde_json", "serde_urlencoded", @@ -1070,6 +1070,30 @@ dependencies = [ "web-time", ] +[[package]] +name = "object_store" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2858065e55c148d294a9f3aae3b0fa9458edadb41a108397094566f4e3c0dfb" +dependencies = [ + "async-trait", + "bytes", + "chrono", + "futures", + "http", + "humantime", + "itertools 0.14.0", + "parking_lot", + "percent-encoding", + "thiserror 2.0.18", + "tokio", + "tracing", + "url", + "walkdir", + "wasm-bindgen-futures", + "web-time", +] + [[package]] name = "once_cell" version = "1.21.3" @@ -1232,7 +1256,7 @@ dependencies = [ "async-trait", "bytes", "futures", - "object_store", + "object_store 0.13.1", "pyo3", "pyo3-async-runtimes", "pyo3-bytes", @@ -1329,9 +1353,9 @@ dependencies = [ [[package]] name = "pyo3-object_store" -version = "0.9.0" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3056dc8a77db5d44d32e7f740db0b01e5b65a43d181487a6917576959c6eb9a" +checksum = "6a900d022739373b3ea71fc77bbd237e094b478f71e4b5460c4371c9dedf7457" dependencies = [ "async-trait", "bytes", @@ -1340,7 +1364,7 @@ dependencies = [ "http", "humantime", "itertools 0.14.0", - "object_store", + "object_store 0.12.5", "percent-encoding", "pyo3", "pyo3-async-runtimes", @@ -1634,6 +1658,15 @@ dependencies = [ "security-framework", ] +[[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.14.0" @@ -2285,9 +2318,9 @@ dependencies = [ [[package]] name = "weezl" -version = "0.1.12" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88" +checksum = "d4ca08e5ef825b65b056d9efbd95c8750683f0a6d0466d02e96dc2e4e360f3d2" [[package]] name = "winapi-util" diff --git a/python/Cargo.toml b/python/Cargo.toml index b1ae208..6259171 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -31,7 +31,7 @@ object_store = "0.13" pyo3 = { version = "0.28.3", features = ["macros"] } pyo3-async-runtimes = "0.28" pyo3-bytes = "0.6" -pyo3-object_store = "0.9.0" +pyo3-object_store = "0.10.0" rayon = "1.12.0" tokio-rayon = "2.1.0" thiserror = "2"