add uuid package to validate uuids for the AuthKey

This commit is contained in:
Lion Kortlepel 2023-11-23 15:57:32 +01:00
parent f0a5fa48b8
commit 09c4bb8b33
No known key found for this signature in database
GPG Key ID: 4322FF2B4C71259B
2 changed files with 8 additions and 0 deletions

7
Cargo.lock generated
View File

@ -177,6 +177,7 @@ dependencies = [
"serde_json",
"tokio",
"toml",
"uuid",
]
[[package]]
@ -1643,6 +1644,12 @@ dependencies = [
"percent-encoding",
]
[[package]]
name = "uuid"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
[[package]]
name = "version_check"
version = "0.9.4"

View File

@ -33,3 +33,4 @@ mlua = { version = "0.9.1", features = ["lua54", "vendored", "send"] }
ratatui = "0.24.0"
crossterm = "0.27.0"
uuid = "1.6.1"