Skip to content

Commit 7c768aa

Browse files
committed
0.35-alpha-1
1 parent c40b2a7 commit 7c768aa

File tree

1 file changed

+20
-11
lines changed

1 file changed

+20
-11
lines changed

s3/Cargo.toml

+20-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-s3"
3-
version = "0.35.0-beta.1"
3+
version = "0.35.0-alpha.1"
44
authors = ["Drazen Urch"]
55
description = "Rust library for working with AWS S3 and compatible object storage APIs"
66
repository = "https://github.com/durch/rust-s3"
@@ -43,8 +43,10 @@ path = "../examples/gcs-tokio.rs"
4343
async-std = { version = "1", optional = true }
4444
async-trait = "0.1"
4545
attohttpc = { version = "0.28", optional = true, default-features = false }
46-
aws-creds = { version = "0.36", path = "../aws-creds", default-features = false }
47-
aws-region = { version = "0.25.4", path = "../aws-region" }
46+
# aws-creds = { version = "0.36", path = "../aws-creds", default-features = false }
47+
# aws-region = { version = "0.25.4", path = "../aws-region" }
48+
aws-region = "0.25"
49+
aws-creds = { version = "0.37", default-features = false }
4850
base64 = "0.22"
4951
cfg-if = "1"
5052
time = { version = "^0.3.6", features = ["formatting", "macros"] }
@@ -91,21 +93,28 @@ block_on_proc = { version = "0.2", optional = true }
9193

9294
[features]
9395
default = ["tags", "use-tokio-native-tls", "fail-on-err"]
94-
use-tokio-native-tls = ["with-tokio", "aws-creds/native-tls", "tokio-native-tls", "hyper-tls", "native-tls"]
95-
with-tokio = [
96-
"hyper",
97-
"tokio",
98-
"tokio/fs",
99-
"tokio-stream",
100-
"futures",
96+
use-tokio-native-tls = [
97+
"with-tokio",
98+
"aws-creds/native-tls",
99+
"tokio-native-tls",
100+
"hyper-tls",
101+
"native-tls",
101102
]
103+
with-tokio = ["hyper", "tokio", "tokio/fs", "tokio-stream", "futures"]
102104
async-std-native-tls = ["with-async-std", "aws-creds/native-tls"]
103105
http-credentials = ["aws-creds/http-credentials"]
104106
with-async-std = ["async-std", "surf", "futures-io", "futures-util", "futures"]
105107
sync = ["attohttpc", "maybe-async/is_sync"]
106108
no-verify-ssl = []
107109
fail-on-err = []
108-
tokio-rustls-tls = ["with-tokio", "aws-creds/rustls-tls", "tokio-rustls", "hyper-rustls", "rustls", "rustls-native-certs"]
110+
tokio-rustls-tls = [
111+
"with-tokio",
112+
"aws-creds/rustls-tls",
113+
"tokio-rustls",
114+
"hyper-rustls",
115+
"rustls",
116+
"rustls-native-certs",
117+
]
109118
sync-native-tls = ["sync", "aws-creds/native-tls", "attohttpc/tls"]
110119
sync-native-tls-vendored = [
111120
"sync",

0 commit comments

Comments
 (0)