From e9d75d89e0c8d10bee0cf1c92cfde6db89e59504 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Apr 2023 21:58:35 +0000 Subject: [PATCH] chore(deps): bump uuid from 0.8.2 to 1.3.1 Bumps [uuid](https://github.com/uuid-rs/uuid) from 0.8.2 to 1.3.1. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/0.8.2...1.3.1) --- 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..a5c8726 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -578,9 +578,9 @@ checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" [[package]] name = "uuid" -version = "0.8.2" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +checksum = "5b55a3fef2a1e3b3a00ce878640918820d3c51081576ac657d23af9fc7928fdb" dependencies = [ "getrandom", "serde", diff --git a/ast/Cargo.toml b/ast/Cargo.toml index 540a8b7..ea4c87a 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.3.1", features = ["serde", "v4"] } log = "0.4.14" diff --git a/core/Cargo.toml b/core/Cargo.toml index 480765f..976d6db 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.3.1", features = ["serde", "v4"] } llvm-sys = "120.2.1"