diff --git a/Cargo.lock b/Cargo.lock index d0af863..a1ab178 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2425,9 +2425,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "1.6.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" +checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" dependencies = [ "getrandom", "rand", diff --git a/common/Cargo.toml b/common/Cargo.toml index 83fd070..809de8e 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -10,7 +10,7 @@ homepage = "https://github.com/cea-sec/openwec" [dependencies] anyhow = "1.0.71" rusqlite = { version = "0.28.0", features = ["bundled"] } -uuid = { version = "1.6.1", features = ["v4", "fast-rng"] } +uuid = { version = "1.7.0", features = ["v4", "fast-rng"] } serde = { version = "1.0", features = ["derive"] } toml = "0.8.0" log = "0.4.19" diff --git a/server/Cargo.toml b/server/Cargo.toml index 65c7054..f489129 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -27,7 +27,7 @@ tokio = { version = "1.35.1", features = ["full"] } rdkafka = { version = "0.36.0", features = ["zstd", "libz", "external-lz4"] } regex = "1.9.0" lazy_static = "1.4.0" -uuid = { version = "1.6.1", features = ["v4", "fast-rng"] } +uuid = { version = "1.7.0", features = ["v4", "fast-rng"] } serde = { version = "1.0.164", features = ["derive"] } serde_json = "1.0.97" async-trait = "0.1.68"