This commit is contained in:
Tony Rewin 2023-10-02 18:38:48 +03:00
parent a67beec218
commit e0f8f0f0e0
2 changed files with 4 additions and 1 deletions

3
Cargo.lock generated
View File

@ -1643,6 +1643,9 @@ name = "uuid"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
dependencies = [
"getrandom",
]
[[package]]
name = "vcpkg"

View File

@ -13,7 +13,7 @@ serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", features = ["json"] }
futures = "0.3.28"
uuid = "1.4.1"
uuid = { version = "1.4.1", features = ["v4"] }
chrono = "0.4"
[[bin]]