summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-11-15 14:46:40 +0000
committerTim Oram <dev@mitmaro.ca>2022-11-16 09:12:00 -0330
commitfeee6dcde943a6a399275fdb4922e2721f0fa458 (patch)
treef1f7850ccf5cc2232477adc8954c17fb8db98aa5
parent20c4a99ce1b29517bccf15aa39c64ec2cb112456 (diff)
Bump uuid from 1.2.1 to 1.2.2
Bumps [uuid](https://github.com/uuid-rs/uuid) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.2.1...1.2.2) --- updated-dependencies: - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock4
-rw-r--r--src/todo_file/Cargo.toml2
-rw-r--r--src/view/Cargo.toml2
3 files changed, 4 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index fc97711..1b9bf54 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1058,9 +1058,9 @@ dependencies = [
[[package]]
name = "uuid"
-version = "1.2.1"
+version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "feb41e78f93363bb2df8b0e86a2ca30eed7806ea16ea0c790d757cf93f79be83"
+checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c"
dependencies = [
"getrandom",
"rand",
diff --git a/src/todo_file/Cargo.toml b/src/todo_file/Cargo.toml
index 0c0bfe1..a7128d2 100644
--- a/src/todo_file/Cargo.toml
+++ b/src/todo_file/Cargo.toml
@@ -17,7 +17,7 @@ name = "todo_file"
[dependencies]
tempfile = "3.3.0"
thiserror = "1.0.37"
-uuid = { version = "1.2.1", features = ["v4", "fast-rng"] }
+uuid = { version = "1.2.2", features = ["v4", "fast-rng"] }
[dev-dependencies]
claim = { git = "https://github.com/Turbo87/rust-claim.git", rev = "23892a3" }
diff --git a/src/view/Cargo.toml b/src/view/Cargo.toml
index 0d32e29..93b0320 100644
--- a/src/view/Cargo.toml
+++ b/src/view/Cargo.toml
@@ -30,7 +30,7 @@ girt-display = {version = "2.2.0", path = "../display"}
girt-runtime = {version = "0.1.0", path = "../runtime"}
[dependencies.uuid]
-version = "1.2.1"
+version = "1.2.2"
features = ["v4", "fast-rng"]
[dev-dependencies]