mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Auto merge of #29246 - servo:dependabot/cargo/nom-7.1.3, r=jdm
Bump nom from 7.1.1 to 7.1.3 Bumps [nom](https://github.com/Geal/nom) from 7.1.1 to 7.1.3. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-bakery/nom/blob/7.1.3/CHANGELOG.md">nom's changelog</a>.</em></p> <blockquote> <h2>7.1.3 - 2023-01-15</h2> <h3>Thanks</h3> <ul> <li><a href="https://github.com/Shadow53"><code>@Shadow53</code></a></li> </ul> <h3>Fixed</h3> <ul> <li>panic in <code>many</code> and <code>count</code> combinators when the output type is zero sized</li> </ul> <h2>7.1.2 - 2023-01-01</h2> <h3>Thanks</h3> <ul> <li><a href="https://github.com/joubs"><code>@joubs</code></a></li> <li><a href="https://github.com/Fyko"><code>@Fyko</code></a></li> <li><a href="https://github.com/LoganDark"><code>@LoganDark</code></a></li> <li><a href="https://github.com/darnuria"><code>@darnuria</code></a></li> <li><a href="https://github.com/jkugelman"><code>@jkugelman</code></a></li> <li><a href="https://github.com/barower"><code>@barower</code></a></li> <li><a href="https://github.com/puzzlewolf"><code>@puzzlewolf</code></a></li> <li><a href="https://github.com/epage"><code>@epage</code></a></li> <li><a href="https://github.com/cky"><code>@cky</code></a></li> <li><a href="https://github.com/wolthom"><code>@wolthom</code></a></li> <li><a href="https://github.com/w1ll-i-code"><code>@w1ll-i-code</code></a></li> </ul> <h3>Changed</h3> <ul> <li>documentation fixes</li> <li>tests fixes</li> <li>limit the initial capacity of the result vector of <code>many_m_n</code> to 64kiB</li> <li>bits parser now accept <code>Parser</code> implementors instead of only functions</li> </ul> <h3>Added</h3> <ul> <li>implement <code>Tuple</code> parsing for the unit type as a special case</li> <li>implement <code>ErrorConvert</code> on the unit type to make it usable as error type for bits parsers</li> <li>bool parser for bits input</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="869f8972a4
"><code>869f897</code></a> v7.1.3</li> <li><a href="a534b39078
"><code>a534b39</code></a> fix other uses of MAX_INITIAL_CAPACITY_BYTES</li> <li><a href="ee7ad17086
"><code>ee7ad17</code></a> avoid panic when counting zero-sized outputs in count() (<a href="https://github-redirect.dependabot.com/Geal/nom/issues/1618">#1618</a>)</li> <li><a href="6be62d30d7
"><code>6be62d3</code></a> v7.1.2 (<a href="https://github-redirect.dependabot.com/Geal/nom/issues/1605">#1605</a>)</li> <li><a href="6860641f1b
"><code>6860641</code></a> 1533 implement bool function for bits (<a href="https://github-redirect.dependabot.com/Geal/nom/issues/1534">#1534</a>)</li> <li><a href="6e45c5d1f3
"><code>6e45c5d</code></a> Remove duplicated section from error_management.md (<a href="https://github-redirect.dependabot.com/Geal/nom/issues/1529">#1529</a>)</li> <li><a href="3c5e08cde0
"><code>3c5e08c</code></a> <code>impl ErrorConvert\<()> for ()</code> (<a href="https://github-redirect.dependabot.com/Geal/nom/issues/1583">#1583</a>)</li> <li><a href="9c357edae7
"><code>9c357ed</code></a> Move the succ! macro to its own file (<a href="https://github-redirect.dependabot.com/Geal/nom/issues/1598">#1598</a>)</li> <li><a href="9cff115667
"><code>9cff115</code></a> Ensure all examples compile (<a href="https://github-redirect.dependabot.com/Geal/nom/issues/1604">#1604</a>)</li> <li><a href="b66ff43eff
"><code>b66ff43</code></a> fix(bits): Accept Parser, not parser-like functions (<a href="https://github-redirect.dependabot.com/Geal/nom/issues/1599">#1599</a>)</li> <li>Additional commits viewable in <a href="https://github.com/Geal/nom/compare/7.1.1...7.1.3">compare view</a></li> </ul> </details> <br /> [](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 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>
This commit is contained in:
commit
f5740fad51
1 changed files with 2 additions and 2 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -4205,9 +4205,9 @@ checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
|
|||
|
||||
[[package]]
|
||||
name = "nom"
|
||||
version = "7.1.1"
|
||||
version = "7.1.3"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
|
||||
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
||||
dependencies = [
|
||||
"memchr",
|
||||
"minimal-lexical",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue