From 589ca19f6db134150cc0a4932f86dc32cacffe6b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 09:29:47 +0000 Subject: [PATCH] deps: bump rust-embed from 6.8.1 to 8.0.0 Pull-Request: #4514. --- Cargo.lock | 48 +++++------------------------- examples/browser-webrtc/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 42 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4e2b1872..d73f4af1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -676,7 +676,7 @@ dependencies = [ "log", "mime_guess", "rand 0.8.5", - "rust-embed 6.8.1", + "rust-embed", "tokio", "tokio-util", "tower", @@ -2203,7 +2203,7 @@ dependencies = [ "rand 0.8.5", "redis", "reqwest", - "rust-embed 8.0.0", + "rust-embed", "serde", "serde_json", "thirtyfour", @@ -4687,39 +4687,14 @@ dependencies = [ "webrtc-util", ] -[[package]] -name = "rust-embed" -version = "6.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a36224c3276f8c4ebc8c20f158eca7ca4359c8db89991c4925132aaaf6702661" -dependencies = [ - "rust-embed-impl 6.8.1", - "rust-embed-utils 7.8.1", - "walkdir", -] - [[package]] name = "rust-embed" version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1e7d90385b59f0a6bf3d3b757f3ca4ece2048265d70db20a2016043d4509a40" dependencies = [ - "rust-embed-impl 8.0.0", - "rust-embed-utils 8.0.0", - "walkdir", -] - -[[package]] -name = "rust-embed-impl" -version = "6.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49b94b81e5b2c284684141a2fb9e2a31be90638caf040bf9afbc5a0416afe1ac" -dependencies = [ - "proc-macro2", - "quote", - "rust-embed-utils 7.8.1", - "shellexpand", - "syn 2.0.32", + "rust-embed-impl", + "rust-embed-utils", "walkdir", ] @@ -4731,28 +4706,19 @@ checksum = "3c3d8c6fd84090ae348e63a84336b112b5c3918b3bf0493a581f7bd8ee623c29" dependencies = [ "proc-macro2", "quote", - "rust-embed-utils 8.0.0", + "rust-embed-utils", + "shellexpand", "syn 2.0.32", "walkdir", ] -[[package]] -name = "rust-embed-utils" -version = "7.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d38ff6bf570dc3bb7100fce9f7b60c33fa71d80e88da3f2580df4ff2bdded74" -dependencies = [ - "globset", - "sha2 0.10.7", - "walkdir", -] - [[package]] name = "rust-embed-utils" version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "873feff8cb7bf86fdf0a71bb21c95159f4e4a37dd7a4bd1855a940909b583ada" dependencies = [ + "globset", "sha2 0.10.7", "walkdir", ] diff --git a/examples/browser-webrtc/Cargo.toml b/examples/browser-webrtc/Cargo.toml index fb43413b..99263dde 100644 --- a/examples/browser-webrtc/Cargo.toml +++ b/examples/browser-webrtc/Cargo.toml @@ -23,7 +23,7 @@ rand = "0.8" axum = "0.6.19" libp2p = { path = "../../libp2p", features = ["ed25519", "macros", "ping", "wasm-bindgen", "tokio"] } libp2p-webrtc = { workspace = true, features = ["tokio"] } -rust-embed = { version = "6.8.1", features = ["include-exclude", "interpolate-folder-path"] } +rust-embed = { version = "8.0.0", features = ["include-exclude", "interpolate-folder-path"] } tokio = { version = "1.29", features = ["macros", "net", "rt", "signal"] } tokio-util = { version = "0.7", features = ["compat"] } tower = "0.4"