Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion 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,2 +1,2 @@
[workspace]
members = ["object-store"]
members = ["object-store", "object-store-internal"]
35 changes: 35 additions & 0 deletions object-store-internal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[package]
name = "object-store-internal"
version = "0.1.10"
edition = "2021"
authors = ["Robert Pack <robstar.pack@gmail.com>"]
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.5.6", features = [
"azure",
"aws",
"gcp",
"aws_profile",
] }
percent-encoding = "2"
pyo3 = { version = "0.18", 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