diff options
| author | sean watters <sean@watters.io> | 2023-02-26 13:53:52 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-26 21:53:52 +0200 |
| commit | ce94bf47ae3b964dc359241d832a02285895c7ad (patch) | |
| tree | ae87eda796f9f9009d728c3f6c5643c9a0485169 | |
| parent | 086fe13bda2101f39bd0bb5d391198fccfd942eb (diff) | |
fix(cli,ext/web): Upgrading uuid from =1.1.2 to 1.3.0 (#17963)
Resolves https://github.com/denoland/deno/issues/17962
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index c8f89eca2..319c7be96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5512,9 +5512,9 @@ checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372" [[package]] name = "uuid" -version = "1.1.2" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd6469f4314d5f1ffec476e05f17cc9a78bc7a27a6a857842170bdf8d6f98d2f" +checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" dependencies = [ "getrandom 0.2.8", "serde", diff --git a/Cargo.toml b/Cargo.toml index 8d63202b6..b189b3da5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -118,7 +118,7 @@ tokio-rustls = "0.23.3" tokio-tungstenite = "0.16.1" tokio-util = "0.7.4" url = { version = "2.3.1", features = ["serde", "expose_internals"] } -uuid = { version = "=1.1.2", features = ["v4"] } +uuid = { version = "1.3.0", features = ["v4"] } zstd = "=0.11.2" # crypto |
