diff --git a/Cargo.lock b/Cargo.lock index a496b59..1d62f42 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -475,7 +475,7 @@ dependencies = [ "bevy_pbr", "bevy_reflect", "materialx-parser", - "smol_str", + "smol_str 0.3.2", "thiserror 2.0.3", "tracing", ] @@ -889,7 +889,7 @@ dependencies = [ "bevy_math", "bevy_reflect", "bevy_utils", - "smol_str", + "smol_str 0.2.2", "thiserror 1.0.69", ] @@ -1202,7 +1202,7 @@ dependencies = [ "petgraph", "serde", "smallvec", - "smol_str", + "smol_str 0.2.2", "thiserror 1.0.69", "uuid", ] @@ -1485,7 +1485,7 @@ dependencies = [ "bevy_reflect", "bevy_utils", "raw-window-handle", - "smol_str", + "smol_str 0.2.2", ] [[package]] @@ -1620,6 +1620,15 @@ dependencies = [ "piper", ] +[[package]] +name = "borsh" +version = "1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5327f6c99920069d1fe374aa743be1af0031dea9f250852cdf1ae6a0861ee24" +dependencies = [ + "cfg_aliases 0.2.1", +] + [[package]] name = "bumpalo" version = "3.16.0" @@ -3576,7 +3585,7 @@ dependencies = [ "glob", "indexmap", "roxmltree", - "smol_str", + "smol_str 0.3.2", "thiserror 2.0.3", ] @@ -4967,6 +4976,16 @@ dependencies = [ "serde", ] +[[package]] +name = "smol_str" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d" +dependencies = [ + "borsh", + "serde", +] + [[package]] name = "socket2" version = "0.5.7" @@ -6338,7 +6357,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 9444f24..cca6267 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 = "2.0.3" -smol_str = "0.2.2" +smol_str = "0.3.2" tracing = "0.1.40" [dev-dependencies] diff --git a/materialx-parser/Cargo.toml b/materialx-parser/Cargo.toml index 4d88070..1b69600 100644 --- a/materialx-parser/Cargo.toml +++ b/materialx-parser/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" thiserror = "2.0.3" roxmltree = "0.20.0" indexmap = "2.5.0" -smol_str = "0.2.2" +smol_str = "0.3.2" bevy_color = { version = "0.14.0", optional = true, default-features = false } bevy_reflect = { version = "0.14.0", optional = true, default-features = false }