diff options
author | Jonathan Davies <jpds@protonmail.com> | 2023-01-23 22:13:07 +0000 |
---|---|---|
committer | Jonathan Davies <jpds@protonmail.com> | 2023-01-26 11:13:11 +0000 |
commit | fbafa76284e35b11b3862c1b8aa7ba85939799d9 (patch) | |
tree | ff34c027f2800e35953daf5307d94c1b1b32cc9f | |
parent | 63e22e71f27d5ad26ffe48361abfc96090c97c28 (diff) | |
download | garage-fbafa76284e35b11b3862c1b8aa7ba85939799d9.tar.gz garage-fbafa76284e35b11b3862c1b8aa7ba85939799d9.zip |
{db,util}/Cargo.toml: Updated mktemp from 0.4 to 0.5.
-rw-r--r-- | Cargo.lock | 8 | ||||
-rw-r--r-- | src/db/Cargo.toml | 2 | ||||
-rw-r--r-- | src/util/Cargo.toml | 2 |
3 files changed, 6 insertions, 6 deletions
@@ -2171,9 +2171,9 @@ dependencies = [ [[package]] name = "mktemp" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "975de676448231fcde04b9149d2543077e166b78fc29eae5aa219e7928410da2" +checksum = "4bdc1f74dd7bb717d39f784f844e490d935b3aa7e383008006dbbf29c1f7820a" dependencies = [ "uuid", ] @@ -4076,9 +4076,9 @@ dependencies = [ [[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", ] diff --git a/src/db/Cargo.toml b/src/db/Cargo.toml index 4bb8529c..f329cc59 100644 --- a/src/db/Cargo.toml +++ b/src/db/Cargo.toml @@ -30,7 +30,7 @@ clap = { version = "4.1", optional = true, features = ["derive", "env"] } pretty_env_logger = { version = "0.4", optional = true } [dev-dependencies] -mktemp = "0.4" +mktemp = "0.5" [features] default = [ "sled" ] diff --git a/src/util/Cargo.toml b/src/util/Cargo.toml index 33580a43..5a36386d 100644 --- a/src/util/Cargo.toml +++ b/src/util/Cargo.toml @@ -48,7 +48,7 @@ hyper = "0.14" opentelemetry = { version = "0.17", features = [ "rt-tokio", "metrics", "trace" ] } [dev-dependencies] -mktemp = "0.4" +mktemp = "0.5" [features] k2v = [] |