Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions xet_client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ default = ["rustls-tls"]
elevated_information_level = []
fd-track = ["xet-runtime/fd-track"]
rustls-tls = ["reqwest/rustls"]
rustls-no-provider = ["reqwest/rustls-no-provider"]
native-tls = ["reqwest/native-tls"]
native-tls-vendored = ["reqwest/native-tls-vendored"]
# The cache_analysis binary needs clap for argument parsing.
Expand Down
1 change: 1 addition & 0 deletions xet_data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ harness = false
default = ["rustls-tls"]
# TLS backend for the underlying reqwest client; see the xet-client crate.
rustls-tls = ["xet-client/rustls-tls"]
rustls-no-provider = ["xet-client/rustls-no-provider"]
native-tls = ["xet-client/native-tls"]
native-tls-vendored = ["xet-client/native-tls-vendored"]
strict = []
Expand Down
1 change: 1 addition & 0 deletions xet_pkg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ simulation = ["xet-client/simulation"]
# the platform-native TLS stack instead, depend on this crate with
# `default-features = false` and enable `native-tls` (or `native-tls-vendored`).
rustls-tls = ["xet-client/rustls-tls", "xet-data/rustls-tls"]
rustls-no-provider = ["xet-client/rustls-no-provider", "xet-data/rustls-no-provider"]
native-tls = ["xet-client/native-tls", "xet-data/native-tls"]
native-tls-vendored = ["xet-client/native-tls-vendored", "xet-data/native-tls-vendored"]
elevated_information_level = ["xet-client/elevated_information_level", "xet-runtime/elevated_information_level"]
Expand Down
Loading