Skip to content

Commit

Permalink
Update ron to 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrobinson committed Jan 29, 2024
1 parent b09563c commit f91b68a
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 25 deletions.
58 changes: 37 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tileview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ron = "0.6.2"
ron = "0.8.1"
serde = {version = "1.0.88", features = ["derive"] }
webrender = {path = "../webrender", features=["capture","replay","png","profiler","no_static_freetype", "leak_checks"]}
webrender_api = {path = "../webrender_api", features=["serialize","deserialize"]}
Expand Down
2 changes: 1 addition & 1 deletion webrender/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ num-traits = "0.2"
plane-split = "0.17"
png = { optional = true, version = "0.16" }
rayon = "1"
ron = { optional = true, version = "0.6.2" }
ron = { optional = true, version = "0.8.1" }
serde = { optional = true, version = "1.0", features = ["serde_derive"] }
smallvec = "1"
time = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions webrender/src/capture.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ impl CaptureConfig {
resource_id: 0,
#[cfg(feature = "capture")]
pretty: ron::ser::PrettyConfig::new()
.with_enumerate_arrays(true)
.with_indentor(" ".to_string()),
.enumerate_arrays(true)
.indentor(" ".to_string()),
}
}

Expand Down

0 comments on commit f91b68a

Please sign in to comment.