Skip to content

Commit

Permalink
Restore proper support for s3-async-rustls. (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
lseelenbinder authored Feb 13, 2024
1 parent 245911e commit a8f86e4
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Cargo.toml
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"
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit a8f86e4

Please sign in to comment.