switched to rust 2021 edition, using cookie jar

This commit is contained in:
uh wot 2021-10-21 17:54:50 +02:00
parent 4773b190b2
commit 89a9303321
Signed by: uhwot
GPG key ID: CB2454984587B781
4 changed files with 83 additions and 51 deletions

42
Cargo.lock generated
View file

@ -142,6 +142,17 @@ version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
[[package]]
name = "cookie"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951"
dependencies = [
"percent-encoding",
"time",
"version_check",
]
[[package]]
name = "cookie"
version = "0.15.1"
@ -153,6 +164,22 @@ dependencies = [
"version_check",
]
[[package]]
name = "cookie_store"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3818dfca4b0cb5211a659bbcbb94225b7127407b2b135e650d717bfb78ab10d3"
dependencies = [
"cookie 0.14.4",
"idna",
"log",
"publicsuffix",
"serde",
"serde_json",
"time",
"url",
]
[[package]]
name = "crc32fast"
version = "1.2.1"
@ -803,6 +830,16 @@ dependencies = [
"yansi",
]
[[package]]
name = "publicsuffix"
version = "1.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
dependencies = [
"idna",
"url",
]
[[package]]
name = "quote"
version = "1.0.9"
@ -916,6 +953,8 @@ dependencies = [
"async-compression",
"base64",
"bytes",
"cookie 0.14.4",
"cookie_store",
"encoding_rs",
"futures-core",
"futures-util",
@ -934,6 +973,7 @@ dependencies = [
"serde",
"serde_json",
"serde_urlencoded",
"time",
"tokio",
"tokio-rustls",
"tokio-util",
@ -1021,7 +1061,7 @@ version = "0.5.0-rc.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23c8b7d512d2fcac2316ebe590cde67573844b99e6cc9ee0f53375fa16e25ebd"
dependencies = [
"cookie",
"cookie 0.15.1",
"either",
"http",
"hyper",