Update Cargo.lock and Cargo.toml

This commit is contained in:
Wizzard 2025-03-16 19:05:29 -04:00
parent 4846e045bb
commit e9d197229a
2 changed files with 12 additions and 0 deletions

10
Cargo.lock generated

@ -1902,6 +1902,7 @@ dependencies = [
"tokio",
"tower 0.5.1",
"tower-http",
"uuid",
"vergen-gitcl",
]
@ -2876,6 +2877,15 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
[[package]]
name = "uuid"
version = "1.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
dependencies = [
"getrandom",
]
[[package]]
name = "vcpkg"
version = "0.2.15"

@ -43,6 +43,8 @@ rand = "0.8"
lazy_static = "1.4"
uuid = { version = "1.3", features = ["v4"] }
[build-dependencies]
reqwest = { version = "0.12.9", features = ["blocking"] }
serde = { version = "1.0.215", features = ["derive"] }