diff options
| author | Laurenz <laurmaedje@gmail.com> | 2024-01-26 10:50:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-26 09:50:43 +0000 |
| commit | 6207b3d9b010d07f73b1819fe1d8463dee3c5adc (patch) | |
| tree | 5bb84d62c00cb5ac247eba0b35b38c6e3020eb19 /Cargo.toml | |
| parent | b09d6ae31c78463ad741644194c17ddd47c2bd56 (diff) | |
Configure ureq to use sytem-native TLS (#3258)
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -62,6 +62,7 @@ libfuzzer-sys = "0.4" lipsum = "0.9" log = "0.4" miniz_oxide = "0.7" +native-tls = "0.2" notify = "6" once_cell = "1" open = "5.0.1" @@ -78,8 +79,6 @@ rayon = "1.7.0" regex = "1" resvg = { version = "0.38.0", default-features = false, features = ["raster-images"] } roxmltree = "0.19" -rustls = "0.21" # in sync with ureq -rustls-pemfile = "1" # in sync with rustls rustybuzz = "0.12.1" same-file = "1" self-replace = "1.3.7" @@ -110,7 +109,7 @@ unicode-properties = "0.1" unicode-script = "0.5" unicode-segmentation = "1" unscanny = "0.1" -ureq = "2" +ureq = { version = "2", default-features = false, features = ["native-tls", "gzip"] } usvg = { version = "0.38.0", default-features = false, features = ["text"] } walkdir = "2" wasmi = "0.31.0" |
