add uuid crate

This commit is contained in:
Carson McManus 2021-07-27 10:10:20 -04:00
parent b313b857c8
commit c936d9a0ac
2 changed files with 11 additions and 0 deletions

10
Cargo.lock generated
View file

@ -1301,6 +1301,7 @@ dependencies = [
"standback",
"stderrlog",
"text_io",
"uuid",
]
[[package]]
@ -1609,6 +1610,15 @@ dependencies = [
"percent-encoding",
]
[[package]]
name = "uuid"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7"
dependencies = [
"getrandom 0.2.2",
]
[[package]]
name = "vcpkg"
version = "0.2.11"

View file

@ -23,3 +23,4 @@ stderrlog = "0.4"
cookie = "0.14"
regex = "1"
lazy_static = "1.4.0"
uuid = { version = "0.8", features = ["v4"] }