-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore proper support for
s3-async-rustls
. (#33)
- Loading branch information
1 parent
245911e
commit a8f86e4
Showing
1 changed file
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pmtiles" | ||
version = "0.7.0" | ||
version = "0.7.1" | ||
edition = "2021" | ||
authors = ["Luke Seelenbinder <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -14,8 +14,8 @@ categories = ["science::geo"] | |
default = [] | ||
http-async = ["__async", "dep:reqwest"] | ||
mmap-async-tokio = ["__async", "dep:fmmap", "fmmap?/tokio-async"] | ||
s3-async-native = ["__async-s3"] | ||
s3-async-rustls = ["__async-s3"] | ||
s3-async-native = ["__async-s3", "__async-s3-nativetls"] | ||
s3-async-rustls = ["__async-s3", "__async-s3-rustls"] | ||
tilejson = ["dep:tilejson", "dep:serde", "dep:serde_json"] | ||
|
||
# Forward some of the common features to reqwest dependency | ||
|
@@ -27,7 +27,9 @@ reqwest-rustls-tls-native-roots = ["reqwest?/rustls-tls-native-roots"] | |
|
||
# Internal features, do not use | ||
__async = ["dep:tokio", "async-compression/tokio"] | ||
__async-s3 = ["__async", "dep:rust-s3", "rust-s3?/tokio-native-tls"] | ||
__async-s3 = ["__async", "dep:rust-s3"] | ||
__async-s3-nativetls = ["rust-s3?/tokio-native-tls"] | ||
__async-s3-rustls = ["rust-s3?/tokio-rustls-tls"] | ||
|
||
[dependencies] | ||
# TODO: determine how we want to handle compression in async & sync environments | ||
|