Added native-tls for reqwest
Added native-tls feature for the reqwest crate to remove openssl dependency
This commit is contained in:
parent
31676b62b5
commit
16db73c4fc
|
@ -29,7 +29,8 @@ 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 = "0.11.9"
|
reqwest = { version = "0.11.9", features = ["native-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]
|
||||||
version = "0.3"
|
version = "0.3"
|
||||||
|
|
Loading…
Reference in New Issue