From c252aefd15ede47004c1f5d49f4b963261fd73f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 05:50:38 +0000 Subject: [PATCH] Bump smol_str from 0.2.2 to 0.3.1 Bumps [smol_str](https://github.com/rust-analyzer/smol_str) from 0.2.2 to 0.3.1. - [Changelog](https://github.com/rust-analyzer/smol_str/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-analyzer/smol_str/compare/v0.2.2...v0.3.1) --- updated-dependencies: - dependency-name: smol_str dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 33 +++++++++++++++++++++++------- bevy-materialx-importer/Cargo.toml | 2 +- materialx-parser/Cargo.toml | 2 +- 3 files changed, 28 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65ab304..e131933 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -481,7 +481,7 @@ dependencies = [ "bevy_pbr", "bevy_reflect", "materialx-parser", - "smol_str", + "smol_str 0.3.1", "thiserror", "tracing", ] @@ -895,7 +895,7 @@ dependencies = [ "bevy_math", "bevy_reflect", "bevy_utils", - "smol_str", + "smol_str 0.2.2", "thiserror", ] @@ -1210,7 +1210,7 @@ dependencies = [ "petgraph", "serde", "smallvec", - "smol_str", + "smol_str 0.2.2", "thiserror", "uuid", ] @@ -1493,7 +1493,7 @@ dependencies = [ "bevy_reflect", "bevy_utils", "raw-window-handle", - "smol_str", + "smol_str 0.2.2", ] [[package]] @@ -1630,6 +1630,15 @@ dependencies = [ "piper", ] +[[package]] +name = "borsh" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6362ed55def622cddc70a4746a68554d7b687713770de539e59a739b249f8ed" +dependencies = [ + "cfg_aliases 0.2.1", +] + [[package]] name = "bumpalo" version = "3.16.0" @@ -3332,7 +3341,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4" dependencies = [ "cfg-if", - "windows-targets 0.48.5", + "windows-targets 0.52.6", ] [[package]] @@ -3452,7 +3461,7 @@ dependencies = [ "glob", "indexmap", "roxmltree", - "smol_str", + "smol_str 0.3.1", "thiserror", ] @@ -4853,6 +4862,16 @@ dependencies = [ "serde", ] +[[package]] +name = "smol_str" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66eaf762c5af19db3108300515c8aa7a50efc90ff745f4c62288052ebf9fdd25" +dependencies = [ + "borsh", + "serde", +] + [[package]] name = "socket2" version = "0.5.7" @@ -6215,7 +6234,7 @@ dependencies = [ "rustix", "sctk-adwaita", "smithay-client-toolkit", - "smol_str", + "smol_str 0.2.2", "tracing", "unicode-segmentation", "wasm-bindgen", diff --git a/bevy-materialx-importer/Cargo.toml b/bevy-materialx-importer/Cargo.toml index 85b4ea2..fbfa2bd 100644 --- a/bevy-materialx-importer/Cargo.toml +++ b/bevy-materialx-importer/Cargo.toml @@ -14,7 +14,7 @@ bevy_reflect = { version = "0.14.0", default-features = false } bevy_asset = { version = "0.14.0", default-features = false } materialx-parser = { version = "0.1.0", path = "../materialx-parser" } thiserror = "1.0.63" -smol_str = "0.2.2" +smol_str = "0.3.1" tracing = "0.1.40" [dev-dependencies] diff --git a/materialx-parser/Cargo.toml b/materialx-parser/Cargo.toml index 12dec6f..4ba388d 100644 --- a/materialx-parser/Cargo.toml +++ b/materialx-parser/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" thiserror = "1.0.63" roxmltree = "0.20.0" indexmap = "2.5.0" -smol_str = "0.2.2" +smol_str = "0.3.1" bevy_color = { version = "0.14.0", optional = true, default-features = false } bevy_reflect = { version = "0.14.0", optional = true, default-features = false }