diff --git a/Cargo.toml b/Cargo.toml index 0005834..2616dc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,9 +15,7 @@ flate2 = "1.0.20" futures = "0.3.31" jpeg = { package = "jpeg-decoder", version = "0.3.0", default-features = false } num_enum = "0.7.3" -# Match the version used by pyo3-object-store -# We'll upgrade to object_store 0.12 ASAP when it comes out -object_store = { git = "https://github.com/apache/arrow-rs", rev = "7a15e4b47ca97df2edef689c9f2ebd2f3888b79e" } +object_store = "0.12" reqwest = "0.12" thiserror = "1" tokio = { version = "1.43.0", optional = true } diff --git a/python/Cargo.toml b/python/Cargo.toml index 97c06db..82b9ccf 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -19,13 +19,11 @@ crate-type = ["cdylib"] [dependencies] async-tiff = { path = "../" } bytes = "1.10.1" -# We'll upgrade to object_store 0.12 ASAP -# Match the version used by pyo3-object-store -object_store = { git = "https://github.com/apache/arrow-rs", rev = "7a15e4b47ca97df2edef689c9f2ebd2f3888b79e" } +object_store = "0.12" pyo3 = { version = "0.23.0", features = ["macros"] } pyo3-async-runtimes = "0.23" pyo3-bytes = "0.1.3" -pyo3-object_store = { git = "https://github.com/developmentseed/obstore", rev = "28ba07a621c1c104f084fb47ae7f8d08b1eae3ea" } +pyo3-object_store = "0.1.0-beta.2" rayon = "1.10.0" tokio-rayon = "2.1.0" thiserror = "1" @@ -40,6 +38,3 @@ reqwest = { version = "*", default-features = false, features = [ [profile.release] lto = true codegen-units = 1 - -[patch.crates-io] -object_store = { git = "https://github.com/apache/arrow-rs", rev = "7a15e4b47ca97df2edef689c9f2ebd2f3888b79e" }