added: validation options

This commit is contained in:
2022-12-04 22:44:37 +01:00
parent b905fa802a
commit cdf2f0a5f8
5 changed files with 144 additions and 46 deletions

21
Cargo.lock generated
View File

@@ -1465,6 +1465,7 @@ dependencies = [
"reqwest",
"serde",
"ssh-key",
"thiserror",
"tokio",
"tower",
"tower-http",
@@ -1565,6 +1566,26 @@ dependencies = [
"winapi-util",
]
[[package]]
name = "thiserror"
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "thread_local"
version = "1.1.4"