Browse Source

Make sure we can request HTTPS urls

upload-correct-windows-binary
Thomas Eizinger 3 years ago
parent
commit
4ac13e405e
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 19
      Cargo.lock
  2. 2
      daemon/Cargo.toml

19
Cargo.lock

@ -1003,6 +1003,21 @@ dependencies = [
"want",
]
[[package]]
name = "hyper-rustls"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64"
dependencies = [
"futures-util",
"hyper",
"log",
"rustls 0.19.1",
"tokio",
"tokio-rustls",
"webpki",
]
[[package]]
name = "ident_case"
version = "1.0.1"
@ -1775,6 +1790,7 @@ dependencies = [
"http",
"http-body",
"hyper",
"hyper-rustls",
"ipnet",
"js-sys",
"lazy_static",
@ -1782,14 +1798,17 @@ dependencies = [
"mime",
"percent-encoding",
"pin-project-lite",
"rustls 0.19.1",
"serde",
"serde_json",
"serde_urlencoded",
"tokio",
"tokio-rustls",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots 0.21.1",
"winreg",
]

2
daemon/Cargo.toml

@ -15,7 +15,7 @@ futures = { version = "0.3", default-features = false }
hex = "0.4"
hkdf = "0.11"
rand = "0.6"
reqwest = { version = "0.11", default-features = false, features = ["json"] }
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls-webpki-roots"] }
rocket = { version = "0.5.0-rc.1", features = ["json"] }
rocket-basicauth = { version = "2", default-features = false }
rocket_db_pools = { git = "https://github.com/SergioBenitez/Rocket", features = ["sqlx_sqlite"] }

Loading…
Cancel
Save