Skip to content

Commit 60b575c

Browse files
committed
Merge branch 'main' into kyle/bump-versions
2 parents adbc9f7 + fa6d9a7 commit 60b575c

File tree

9 files changed

+733
-703
lines changed

9 files changed

+733
-703
lines changed

Cargo.lock

Lines changed: 47 additions & 39 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[workspace]
22
resolver = "2"
3-
members = ["object-store"]
3+
members = ["object-store", "object-store-internal"]

object-store-internal/Cargo.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[package]
2+
name = "object-store-internal"
3+
version = "0.1.10"
4+
edition = "2021"
5+
authors = ["Robert Pack <robstar.pack@gmail.com>"]
6+
description = "A generic object store interface for uniformly interacting with AWS S3, Google Cloud Storage, Azure Storage and local files."
7+
8+
[dependencies]
9+
async-trait = "0.1.57"
10+
bytes = "1.2.1"
11+
futures = "0.3"
12+
once_cell = "1.12.0"
13+
object_store = { version = "0.9", features = ["azure", "aws", "gcp"] }
14+
percent-encoding = "2"
15+
pyo3 = { version = "0.20", default-features = false, features = ["macros"] }
16+
thiserror = "1.0.34"
17+
tokio = { version = "1.0", features = [
18+
"macros",
19+
"rt",
20+
"rt-multi-thread",
21+
"sync",
22+
] }
23+
url = "2.3"
24+
25+
# reqwest is pulled in by object store, but not used by python binding itself
26+
# for binary wheel best practice, statically link openssl
27+
reqwest = { version = "*", features = ["native-tls-vendored"] }
28+
29+
[lib]
30+
crate-type = ["rlib"]
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)