Skip to content

Commit

Permalink
* Use opendal services that really needs
Browse files Browse the repository at this point in the history
* Migrate `rustls` feature to the `reqwest` feature
  • Loading branch information
AJIOB committed Mar 3, 2024
1 parent 281a112 commit bb64905
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ mime = "0.3"
num_cpus = "1.16"
number_prefix = "0.4"
once_cell = "1.19"
opendal = { version = "0.45.1", optional = true }
opendal = { version = "0.45.1", optional = true, default-features = false }
openssl = { version = "0.10.62", optional = true }
rand = "0.8.4"
regex = "1.10.3"
Expand All @@ -74,6 +74,7 @@ reqwest = { version = "0.11", features = [
"blocking",
"stream",
"rustls-tls",
"rustls-tls-native-roots",
"trust-dns",
], optional = true }
retry = "2"
Expand Down Expand Up @@ -155,16 +156,16 @@ all = [
"webdav",
"oss",
]
azure = ["opendal", "reqsign"]
azure = ["opendal/services-azblob", "reqsign"]
default = ["all"]
gcs = ["opendal", "reqsign", "url", "reqwest/blocking"]
gha = ["opendal"]
gcs = ["opendal/services-gcs", "reqsign", "url", "reqwest/blocking"]
gha = ["opendal/services-ghac"]
memcached = ["opendal/services-memcached"]
native-zlib = []
oss = ["opendal", "reqsign"]
oss = ["opendal/services-oss", "reqsign"]
redis = ["url", "opendal/services-redis"]
s3 = ["opendal", "reqsign"]
webdav = ["opendal"]
s3 = ["opendal/services-s3", "reqsign"]
webdav = ["opendal/services-webdav"]
# Enable features that will build a vendored version of openssl and
# statically linked with it, instead of linking against the system-wide openssl
# dynamically or statically.
Expand Down

0 comments on commit bb64905

Please sign in to comment.