mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Auto merge of #26816 - servo:dependabot/cargo/serde_json-1.0.53, r=jdm
build(deps): bump serde_json from 1.0.27 to 1.0.53 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.27 to 1.0.53. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/serde-rs/json/releases">serde_json's releases</a>.</em></p> <blockquote> <h2>v1.0.53</h2> <ul> <li>Reduce unhelpful indentation in the {:#?} format of serde_json::Value</li> <li>Remove some unnecessary runtime checks from Serializer::collect_str</li> </ul> <h2>v1.0.52</h2> <ul> <li>Add <a href="https://docs.rs/serde_json/1/serde_json/value/fn.to_raw_value.html">serde_json::value::to_raw_value</a> to convert a serializable value to Box<RawValue> (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/658">#658</a>, thanks <a href="https://github.com/jplatte">@jplatte</a>)</li> </ul> <h2>v1.0.51</h2> <ul> <li>Terminate StreamDeserializer after errors instead of repeatedly reparsing the same failed input (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/647">#647</a>)</li> <li>Add FusedIterator impls for StreamDeserializer and for Map's various iterators</li> </ul> <h2>v1.0.50</h2> <ul> <li>Implement Eq for Value, Map, Number (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/640">#640</a>, thanks <a href="https://github.com/smarnach">@smarnach</a>)</li> </ul> <h2>v1.0.49</h2> <ul> <li>Improve error message when neither "std" nor "alloc" feature is enabled (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/643">#643</a>)</li> </ul> <h2>v1.0.48</h2> <ul> <li>Add <code>serde_json::value::Serializer</code> which produces a <code>Value</code> as output (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/621">#621</a>, thanks <a href="https://github.com/sdleffler">@sdleffler</a>)</li> </ul> <h2>v1.0.47</h2> <ul> <li>Raise serde requirement to 1.0.100+ for the necessary no-std traits (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/617">#617</a>, thanks <a href="https://github.com/Xanewok">@Xanewok</a>)</li> </ul> <h2>v1.0.46</h2> <ul> <li>Serialize JSON map entries using serialize_entry instead of serialize_key + serialize_value to support transcoding to XML (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/614">#614</a>, thanks <a href="https://github.com/jmfiaschi">@jmfiaschi</a>)</li> </ul> <h2>v1.0.45</h2> <ul> <li> <p>Add no-std support (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/606">#606</a>, thanks <a href="https://github.com/Xanewok">@Xanewok</a>)</p> <pre lang="toml"><code>[dependencies] serde_json = { version = "1.0.45", default-features = false, features = ["alloc"] } </code></pre> </li> </ul> <h2>v1.0.44</h2> <ul> <li>Implement IntoDeserializer for serde_json::Value to allow deserializing from types like <code>HashMap<String, Value></code> (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/591">#591</a>)</li> </ul> <h2>v1.0.43</h2> <ul> <li>Declare accurate minimum required version of indexmap crate when preserve-order feature is enabled (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/590">#590</a>, thanks <a href="https://github.com/nlordell">@nlordell</a>)</li> </ul> <h2>v1.0.42</h2> <ul> <li>Add <code>impl From<()> for Value</code> which produces Value::Null (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/585">#585</a>, thanks <a href="https://github.com/Nilix007">@Nilix007</a>)</li> </ul> <h2>v1.0.41</h2> <ul> <li>Documentation improvements (thanks <a href="https://github.com/est31">@est31</a> and <a href="https://github.com/yankuu">@yankuu</a>)</li> </ul> <h2>v1.0.40</h2> <ul> <li>Return correct EOF error type on cut-off decimal numbers (<a href="https://github-redirect.dependabot.com/serde-rs/json/issues/525">#525</a>, thanks <a href="https://github.com/17dec">@17dec</a>)</li> </ul> <h2>v1.0.39</h2> </tr></table> ... (truncated) </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="5c3711e433
"><code>5c3711e</code></a> Release 1.0.53</li> <li><a href="6ca3752e9d
"><code>6ca3752</code></a> Downgrade some unnecessary runtime asserts to debug_assert</li> <li><a href="eb383c08b2
"><code>eb383c0</code></a> Update arbitrary_precision Debug impl of Number to match normal one</li> <li><a href="351d847e17
"><code>351d847</code></a> Omit a layer of unnecessary nesting from Debug impl</li> <li><a href="baae6d9306
"><code>baae6d9</code></a> Add test for {:#?} format of Value</li> <li><a href="800a8d58a9
"><code>800a8d5</code></a> Update build status badge to GitHub Actions</li> <li><a href="cb40c10e3f
"><code>cb40c10</code></a> Remove AppVeyor configuration</li> <li><a href="f255356c65
"><code>f255356</code></a> Add Windows CI in GitHub Actions</li> <li><a href="edb1c31dfb
"><code>edb1c31</code></a> Avoid repeating slow doctests and compiletests</li> <li><a href="dffbe4488f
"><code>dffbe44</code></a> Remove Travis configuration</li> <li>Additional commits viewable in <a href="https://github.com/serde-rs/json/compare/v1.0.27...v1.0.53">compare view</a></li> </ul> </details> <br /> [](https://dependabot.com/compatibility-score/?dependency-name=serde_json&package-manager=cargo&previous-version=1.0.27&new-version=1.0.53) 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 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
This commit is contained in:
commit
d71df9c4a4
1 changed files with 4 additions and 4 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -4478,9 +4478,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "ryu"
|
||||
version = "0.2.8"
|
||||
version = "1.0.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b96a9549dc8d48f2c283938303c4b5a77aa29bfbc5b54b084fb1630408899a8f"
|
||||
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
|
||||
|
||||
[[package]]
|
||||
name = "same-file"
|
||||
|
@ -4765,9 +4765,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "serde_json"
|
||||
version = "1.0.27"
|
||||
version = "1.0.53"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "59790990c5115d16027f00913e2e66de23a51f70422e549d2ad68c8c5f268f1c"
|
||||
checksum = "993948e75b189211a9b31a7528f950c6adc21f9720b6438ff80a7fa2f864cea2"
|
||||
dependencies = [
|
||||
"itoa",
|
||||
"ryu",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue