Skip to content

Commit 81f02f2

Browse files
chore(deps): update rust crate ron to 0.11 (#8196)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 6ef8e1f commit 81f02f2

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ rayon = "1.3"
174174
regex-lite = "0.1"
175175
renderdoc-sys = "1"
176176
rspirv = "0.12"
177-
ron = "0.10"
177+
ron = "0.11"
178178
# NOTE: rustc-hash v2 is a completely different hasher with different performance characteristics
179179
# see discussion here (including with some other alternatives): https://github.com/gfx-rs/wgpu/issues/6999
180180
# (using default-features = false to support no-std build, avoiding any extra features that may require std::collections)

player/tests/player/main.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,7 @@ impl Test<'_> {
7676
_ => unreachable!(),
7777
};
7878
let string = read_to_string(&path).unwrap().replace("Noop", backend_name);
79-
ron::de::from_str(&string)
80-
.unwrap_or_else(|e| panic!("{path:?}:{} {}", e.position.line, e.code))
79+
ron::de::from_str(&string).unwrap_or_else(|e| panic!("{path:?}:{} {}", e.span, e.code))
8180
}
8281

8382
fn run(

0 commit comments

Comments
 (0)