From d7bc4019a3c8824d91c8a378e06e3a67bb4f9ba0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Nov 2022 21:04:02 +0000 Subject: [PATCH] chore(deps): bump uuid from 0.8.2 to 1.2.2 Bumps [uuid](https://github.com/uuid-rs/uuid) from 0.8.2 to 1.2.2. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/0.8.2...1.2.2) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- ast/Cargo.toml | 2 +- core/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9c96d82..caa9c23 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -578,9 +578,9 @@ checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" [[package]] name = "uuid" -version = "0.8.2" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c" dependencies = [ "getrandom", "serde", diff --git a/ast/Cargo.toml b/ast/Cargo.toml index 540a8b7..b86789e 100644 --- a/ast/Cargo.toml +++ b/ast/Cargo.toml @@ -7,6 +7,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -uuid = { version = "0.8.2", features = ["serde", "v4"] } +uuid = { version = "1.2.2", features = ["serde", "v4"] } log = "0.4.14" diff --git a/core/Cargo.toml b/core/Cargo.toml index 480765f..b722b63 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -11,5 +11,5 @@ thiserror = "1.0.24" ast = {path="../ast"} parser = {path="../parser"} log = "0.4.14" -uuid = { version = "0.8.2", features = ["serde", "v4"] } +uuid = { version = "1.2.2", features = ["serde", "v4"] } llvm-sys = "120.2.1"