From 8ab05166d5ecd5ee6c25d602483f35a458d4b19a Mon Sep 17 00:00:00 2001 From: Andre Guedes Date: Thu, 26 Sep 2024 15:32:05 -0300 Subject: [PATCH] [HOTFIX] Enable arbitrary lists prefixes, bumps to 0.8.1 --- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 57a8927..0ca86c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1198,7 +1198,7 @@ dependencies = [ [[package]] name = "object_store" version = "0.10.2" -source = "git+https://github.com/andrebsguedes/arrow-rs.git?branch=unsigned-payload-and-azure-list-offset#dd905b9c5c975eb27c78a4a091d1cb2de8773404" +source = "git+https://github.com/andrebsguedes/arrow-rs.git?branch=unsigned-payload-and-azure-list-offset#5f3bf4e235194ab818e67d2a69e6695970af5b63" dependencies = [ "async-trait", "base64", @@ -1226,7 +1226,7 @@ dependencies = [ [[package]] name = "object_store_ffi" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "async-channel", diff --git a/Cargo.toml b/Cargo.toml index afce369..0263d30 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "object_store_ffi" -version = "0.8.0" +version = "0.8.1" edition = "2021" [[bench]] @@ -34,7 +34,7 @@ futures-util = "0.3" reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "hickory-dns"] } # object_store = { version = "0.10.1", features = ["azure", "aws"] } # Pinned to a specific commit while waiting for upstream -object_store = { git = "https://github.com/andrebsguedes/arrow-rs.git", branch = "unsigned-payload-and-azure-list-offset", features = ["azure", "aws", "experimental-azure-list-offset"] } +object_store = { git = "https://github.com/andrebsguedes/arrow-rs.git", branch = "unsigned-payload-and-azure-list-offset", features = ["azure", "aws", "experimental-azure-list-offset", "experimental-arbitrary-list-prefix"] } thiserror = "1" anyhow = { version = "1", features = ["backtrace"] } once_cell = "1.18"