Skip to content

Commit 74dd65f

Browse files
authored
Bump ron from 0.10.1 to 0.11.0 (#876)
Bumps [ron](https://github.com/ron-rs/ron) from 0.10.1 to 0.11.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ron-rs/ron/releases">ron's releases</a>.</em></p> <blockquote> <h2>v0.11.0</h2> <h2>What's Changed</h2> <ul> <li>Add <code>no_std</code> Support by <a href="https://github.com/bushrat011899"><code>@​bushrat011899</code></a> in <a href="https://redirect.github.com/ron-rs/ron/pull/567">ron-rs/ron#567</a></li> <li>SpannedError: Store error span by <a href="https://github.com/pfnsec"><code>@​pfnsec</code></a> in <a href="https://redirect.github.com/ron-rs/ron/pull/569">ron-rs/ron#569</a></li> <li>Fix (again) non-exhaustive matching on Number by <a href="https://github.com/juntyr"><code>@​juntyr</code></a> in <a href="https://redirect.github.com/ron-rs/ron/pull/568">ron-rs/ron#568</a></li> <li>Add file IO with Vec<!-- raw HTML omitted --> example by <a href="https://github.com/LanHikari22"><code>@​LanHikari22</code></a> in <a href="https://redirect.github.com/ron-rs/ron/pull/573">ron-rs/ron#573</a></li> <li>Patch serde content detection hack by <a href="https://github.com/juntyr"><code>@​juntyr</code></a> in <a href="https://redirect.github.com/ron-rs/ron/pull/580">ron-rs/ron#580</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/bushrat011899"><code>@​bushrat011899</code></a> made their first contribution in <a href="https://redirect.github.com/ron-rs/ron/pull/567">ron-rs/ron#567</a></li> <li><a href="https://github.com/pfnsec"><code>@​pfnsec</code></a> made their first contribution in <a href="https://redirect.github.com/ron-rs/ron/pull/569">ron-rs/ron#569</a></li> <li><a href="https://github.com/LanHikari22"><code>@​LanHikari22</code></a> made their first contribution in <a href="https://redirect.github.com/ron-rs/ron/pull/573">ron-rs/ron#573</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/ron-rs/ron/compare/v0.10.1...v0.11.0">https://github.com/ron-rs/ron/compare/v0.10.1...v0.11.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ron-rs/ron/blob/master/CHANGELOG.md">ron's changelog</a>.</em></p> <blockquote> <h2>[0.11.0] - 2025-08-27</h2> <h3>API Changes</h3> <ul> <li> <p>Breaking: <code>SpannedError</code> now stores the full error span in span: Span { start: Position, end: Position }`, to facilitate, e.g., language server highlighting of syntax errors.</p> </li> <li> <p>Breaking: Added <code>no_std</code> support via a new <code>std</code> feature (enabled by default). With default features disabled, you must enable the <code>std</code> feature to access <code>de::from_reader</code>, and the <code>std::io</code> operations on <code>Options</code>, such as <code>from_reader</code>, <code>from_reader_seed</code>, <code>to_io_writer</code>, and <code>to_io_writer_pretty</code> (<a href="https://redirect.github.com/ron-rs/ron/pull/567">#567</a>)</p> </li> <li> <p>Breaking: Fixed (again) <code>ron::value::Number</code> to ensure it is non-exhaustive, to avoid breaking <code>match</code>es when feature unification enables more of its variants than expected (<a href="https://redirect.github.com/ron-rs/ron/pull/568">#568</a>)</p> </li> </ul> <h3>Examples</h3> <ul> <li>Add a new example <code>file_read_write_vec.rs</code> for reading and writing <code>Vec&lt;T&gt;</code> to/from files. (<a href="https://redirect.github.com/ron-rs/ron/pull/573">#573</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ron-rs/ron/commit/cdd9fccd76e4c2f515706453f7c0e4351b8f3784"><code>cdd9fcc</code></a> Bump ron to v0.11.0</li> <li><a href="https://github.com/ron-rs/ron/commit/1dcc70e5d759b48ee1b861757fc4f52facec2b0d"><code>1dcc70e</code></a> Patch serde content detection hack (<a href="https://redirect.github.com/ron-rs/ron/issues/580">#580</a>)</li> <li><a href="https://github.com/ron-rs/ron/commit/29e244a21cc8eefeceb6a3a7e2be71760a0ce792"><code>29e244a</code></a> Add file IO with Vec&lt;T&gt; example (<a href="https://redirect.github.com/ron-rs/ron/issues/573">#573</a>)</li> <li><a href="https://github.com/ron-rs/ron/commit/ba572011ad8eb24992cb6fa9e540a86e3e249a91"><code>ba57201</code></a> Fix (again) non-exhaustive matching on Number (<a href="https://redirect.github.com/ron-rs/ron/issues/568">#568</a>)</li> <li><a href="https://github.com/ron-rs/ron/commit/27a26d691a24ac1eef3462086eed31dcbc0196f9"><code>27a26d6</code></a> SpannedError: Store error span (<a href="https://redirect.github.com/ron-rs/ron/issues/569">#569</a>)</li> <li><a href="https://github.com/ron-rs/ron/commit/b7a5bfcef32ac68d7aff4d9984c30fa83f159305"><code>b7a5bfc</code></a> Add <code>no_std</code> support (<a href="https://redirect.github.com/ron-rs/ron/issues/567">#567</a>)</li> <li><a href="https://github.com/ron-rs/ron/commit/3159534d8111a31d33791826aef2132308cc032c"><code>3159534</code></a> Add 564_exhaustive_number test</li> <li>See full diff in <a href="https://github.com/ron-rs/ron/compare/v0.10.1...v0.11.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ron&package-manager=cargo&previous-version=0.10.1&new-version=0.11.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
2 parents ff24937 + c5b63ea commit 74dd65f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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.

serde_with/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ mime = "0.3.16"
169169
pretty_assertions = "1.4.0"
170170
regex = { version = "1.11.0", default-features = false, features = ["std"] }
171171
rmp-serde = "1.3.0"
172-
ron = "0.10"
172+
ron = "0.11"
173173
rustversion = "1.0.0"
174174
schemars_0_8 = { package = "schemars", version = "0.8.16" }
175175
schemars_0_9 = { package = "schemars", version = "0.9.0" }

0 commit comments

Comments
 (0)