From 477abad13a91db5878e8418296b5cd829cc1cee4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Sep 2025 19:33:35 +0000 Subject: [PATCH] Bump uuid from 1.17.0 to 1.18.1 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.17.0 to 1.18.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.17.0...v1.18.1) --- updated-dependencies: - dependency-name: uuid dependency-version: 1.18.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- cli/Cargo.toml | 2 +- common/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 483f4c89..c070455f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3136,9 +3136,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.17.0" +version = "1.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" +checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" dependencies = [ "getrandom 0.3.3", "js-sys", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 7217622d..3539d17c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -19,6 +19,6 @@ serde_json = "1.0.97" tokio = { version = "1.41.0", features = ["full"] } roxmltree = "0.20.0" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.12.1", features = ["v4", "fast-rng"] } +uuid = { version = "1.18.1", features = ["v4", "fast-rng"] } chrono = { version = "0.4.26", default-features = false, features = ["clock"] } strum = { version = "0.27.1", features = ["derive"] } diff --git a/common/Cargo.toml b/common/Cargo.toml index 4bf8e3ca..0e10dfd0 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -11,7 +11,7 @@ description = "A Windows Event Collector server using WEF for GNU/Linux" [dependencies] anyhow = "1.0.71" rusqlite = { version = "0.28.0", features = ["bundled"] } -uuid = { version = "1.12.1", features = ["v4", "fast-rng", "serde"] } +uuid = { version = "1.18.1", features = ["v4", "fast-rng", "serde"] } 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 86676b2f..6f45ad79 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -25,7 +25,7 @@ roxmltree = "0.20.0" tokio = { version = "1.41.0", features = ["full"] } rdkafka = { version = "0.37.0", features = ["zstd", "libz", "external-lz4", "ssl", "sasl", "gssapi"] } regex = "1.11.0" -uuid = { version = "1.12.1", features = ["v4", "fast-rng"] } +uuid = { version = "1.18.1", features = ["v4", "fast-rng"] } serde = { version = "1.0.164", features = ["derive", "rc"] } serde_json = "1.0.97" async-trait = "0.1.68"