From 120dfb4df7468ecde76958dc0d4c3119783b93ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 05:09:35 +0000 Subject: [PATCH] Bump uuid from 1.10.0 to 1.11.0 Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.10.0 to 1.11.0. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.10.0...1.11.0) --- updated-dependencies: - dependency-name: uuid 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 63a87ba..9999c81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2646,9 +2646,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" +checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" dependencies = [ "getrandom", "rand", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 5bf02a8..3143599 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -19,6 +19,6 @@ serde_json = "1.0.97" tokio = { version = "1.35.1", features = ["full"] } roxmltree = "0.20.0" serde = { version = "1.0", features = ["derive"] } -uuid = { version = "1.7.0", features = ["v4", "fast-rng"] } +uuid = { version = "1.11.0", features = ["v4", "fast-rng"] } chrono = { version = "0.4.26", default-features = false, features = ["clock"] } strum = { version = "0.26.1", features = ["derive"] } diff --git a/common/Cargo.toml b/common/Cargo.toml index 8ca70b7..1bbce95 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.7.0", features = ["v4", "fast-rng", "serde"] } +uuid = { version = "1.11.0", 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 d0d28b3..6da2589 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -25,7 +25,7 @@ roxmltree = "0.20.0" tokio = { version = "1.35.1", features = ["full"] } rdkafka = { version = "0.36.0", features = ["zstd", "libz", "external-lz4"] } regex = "1.11.0" -uuid = { version = "1.7.0", features = ["v4", "fast-rng"] } +uuid = { version = "1.11.0", features = ["v4", "fast-rng"] } serde = { version = "1.0.164", features = ["derive", "rc"] } serde_json = "1.0.97" async-trait = "0.1.68"