Skip to content

Commit

Permalink
revert rustls default; add optional vendored openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Dec 18, 2023
1 parent ed4675a commit 5075a73
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ suppaftp = { version = "^5.1.0", optional = true }

thiserror = "1.0"

openssl = { version = "0.10", features = ["vendored"], optional = true }

[features]
default = ["lib"]
all = ["lib", "cli", "s3"]
Expand All @@ -66,7 +68,7 @@ lz = ["lz4"]
xz = ["xz2"]

remote=["reqwest", "suppaftp"]
cli = ["clap", "tracing", "s3", "no-cache", "rustls"]
cli = ["clap", "tracing", "s3", "no-cache"]
json = ["serde", "serde_json"]

# s3 support, off by default
Expand All @@ -75,6 +77,9 @@ s3= ["rust-s3", "native-tls", "dotenvy"]
# no-cache
no-cache = []

# vendored openssl
vendored-openssl = ["openssl"]

[dev-dependencies]
serde = {version="1.0", features=["derive"]}
tracing = "0.1"
Expand Down

0 comments on commit 5075a73

Please sign in to comment.