Skip to content

Commit 4a4ef7a

Browse files
Bump bumpalo from 3.13.0 to 3.14.0 (raviqqe#50)
Bumps [bumpalo](https://github.com/fitzgen/bumpalo) from 3.13.0 to 3.14.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md">bumpalo's changelog</a>.</em></p> <blockquote> <h2>3.14.0</h2> <p>Released 2023-09-14.</p> <h3>Added</h3> <ul> <li>Added the <code>std</code> cargo feature, which enables implementations of <code>std</code> traits for various things. Right now that is just <code>std::io::Write</code> for <code>bumpalo::collections::Vec</code>, but could be more in the future.</li> </ul> <hr /> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fitzgen/bumpalo/commit/c610d5adc54b9428465d72c4666c305df04c792a"><code>c610d5a</code></a> Bump to version 3.14.0</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/7dbb89cfdc2255c9bb1d213e7b6fea8bb5be4f24"><code>7dbb89c</code></a> Merge pull request <a href="https://redirect.github.com/fitzgen/bumpalo/issues/216">#216</a> from marmeladema/std-io-write</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/cdaaae14448919d497a8172bdf9dba90e778eb7f"><code>cdaaae1</code></a> Implement <code>std::io::Write</code> for <code>Vec\&lt;'bump, u8&gt;</code></li> <li><a href="https://github.com/fitzgen/bumpalo/commit/86c63a4a02c52fb79eb8f27fd4d0e5e727cd3116"><code>86c63a4</code></a> Merge pull request <a href="https://redirect.github.com/fitzgen/bumpalo/issues/214">#214</a> from waywardmonkeys/typo-fixes</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/9c6c38f3a5424414c444fc0a2798ecf862afeff2"><code>9c6c38f</code></a> Fix some typos.</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/9be533b0877d729ddede5643e0ecafdb0c795e68"><code>9be533b</code></a> Merge pull request <a href="https://redirect.github.com/fitzgen/bumpalo/issues/212">#212</a> from waywardmonkeys/clippy-unnecessary-cast</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/4d4cb90a3f48ba984b2d7872ff2e9c6cb7bfdb35"><code>4d4cb90</code></a> clippy: Remove unneccessary casts.</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/2c3ded0f5ef7460f66335ac7e8471b92afd14491"><code>2c3ded0</code></a> Merge pull request <a href="https://redirect.github.com/fitzgen/bumpalo/issues/211">#211</a> from frisoft/main</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/b6ea85716872a26519b41058b51c2d098607b61f"><code>b6ea857</code></a> Merge pull request <a href="https://redirect.github.com/fitzgen/bumpalo/issues/1">#1</a> from frisoft/update-license-field</li> <li><a href="https://github.com/fitzgen/bumpalo/commit/abac21c7799f921e423cf57277eff331c000f5ce"><code>abac21c</code></a> Update license field following SPDX 2.1 license expression standard</li> <li>Additional commits viewable in <a href="https://github.com/fitzgen/bumpalo/compare/3.13.0...3.14.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=bumpalo&package-manager=cargo&previous-version=3.13.0&new-version=3.14.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> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2cb0c5a commit 4a4ef7a

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "./README.md"
99
keywords = ["format", "scheme"]
1010

1111
[dependencies]
12-
bumpalo = { version = "3.13.0", features = ["allocator_api"] }
12+
bumpalo = { version = "3.14.0", features = ["allocator_api"] }
1313
mfmt = "0.2"
1414
nom = "7.1.3"
1515
nom_locate = "4.2.0"

0 commit comments

Comments
 (0)