Add new test based on token auth

This commit is contained in:
2022-09-02 08:59:07 +02:00
parent 62fa71ea6e
commit 886843d087
13 changed files with 462 additions and 5 deletions

19
Cargo.lock generated
View File

@ -1042,6 +1042,15 @@ dependencies = [
"windows-sys",
]
[[package]]
name = "mktemp"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "975de676448231fcde04b9149d2543077e166b78fc29eae5aa219e7928410da2"
dependencies = [
"uuid",
]
[[package]]
name = "nom"
version = "7.1.1"
@ -1602,6 +1611,7 @@ dependencies = [
"futures",
"hyper-rustls",
"log",
"mktemp",
"pem",
"rand",
"reqwest",
@ -1873,6 +1883,15 @@ version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
"getrandom",
]
[[package]]
name = "version_check"
version = "0.9.4"