Reqwest now uses rust-tls

This commit is contained in:
Joe Bellus 2022-02-12 02:22:49 -05:00
parent e10c6e4cda
commit 7f0b9d1561
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ rand = "0.8.4"
tokio = { verison = "1", features=["full"] } tokio = { verison = "1", features=["full"] }
base64 = "0.13.0" base64 = "0.13.0"
sqlx = { version = "^0.5", features=["sqlite", "migrate"] } sqlx = { version = "^0.5", features=["sqlite", "migrate"] }
reqwest = { version = "0.11.9", features = ["native-tls"] } reqwest = { version = "0.11.9", features = ["rust-tls"] }
[target.'cfg(all(target_env = "musl", target_pointer_width = "64"))'.dependencies.jemallocator] [target.'cfg(all(target_env = "musl", target_pointer_width = "64"))'.dependencies.jemallocator]