Skip to content

Commit

Permalink
Merge branch 'main' into kyle/bump-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Feb 16, 2024
2 parents adbc9f7 + fa6d9a7 commit 60b575c
Show file tree
Hide file tree
Showing 9 changed files with 733 additions and 703 deletions.
86 changes: 47 additions & 39 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[workspace]
resolver = "2"
members = ["object-store"]
members = ["object-store", "object-store-internal"]
30 changes: 30 additions & 0 deletions object-store-internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "object-store-internal"
version = "0.1.10"
edition = "2021"
authors = ["Robert Pack <[email protected]>"]
description = "A generic object store interface for uniformly interacting with AWS S3, Google Cloud Storage, Azure Storage and local files."

[dependencies]
async-trait = "0.1.57"
bytes = "1.2.1"
futures = "0.3"
once_cell = "1.12.0"
object_store = { version = "0.9", features = ["azure", "aws", "gcp"] }
percent-encoding = "2"
pyo3 = { version = "0.20", default-features = false, features = ["macros"] }
thiserror = "1.0.34"
tokio = { version = "1.0", features = [
"macros",
"rt",
"rt-multi-thread",
"sync",
] }
url = "2.3"

# reqwest is pulled in by object store, but not used by python binding itself
# for binary wheel best practice, statically link openssl
reqwest = { version = "*", features = ["native-tls-vendored"] }

[lib]
crate-type = ["rlib"]
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 60b575c

Please sign in to comment.