Skip to content

Commit 18d8072

Browse files
chore(deps): bump the all-cargo-dependencies group with 5 updates (#867)
Bumps the all-cargo-dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [compact_str](https://github.com/ParkMyCar/compact_str) | `0.8.1` | `0.9.0` | | [once_cell](https://github.com/matklad/once_cell) | `1.21.0` | `1.21.1` | | [papaya](https://github.com/ibraheemdev/papaya) | `0.2.0` | `0.2.1` | | [uuid](https://github.com/uuid-rs/uuid) | `1.15.1` | `1.16.0` | | [aligned-vec](https://github.com/sarah-ek/aligned-vec) | `0.6.2` | `0.6.4` | Updates `compact_str` from 0.8.1 to 0.9.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ParkMyCar/compact_str/blob/main/CHANGELOG.md">compact_str's changelog</a>.</em></p> <blockquote> <h1>0.9.0</h1> <h3>February 24, 2025</h3> <h2>Breaking Changes 💥</h2> <ul> <li>Removed deprecated methods <code>CompactString::new_inline(...)</code> and <code>CompactString::from_static_str(...)</code>. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/429"><code>fix: delete methods that are documented as deprecated in v0.9.0</code></a></li> </ul> </li> <li>Changed the <code>CompactStringExt::join_compact</code> and <code>CompactStringExt::concat_compact</code> to take a reference (i.e. <code>&amp;C</code>) to a type <code>C: IntoIterator&lt;Item = &amp;str&gt;</code> instead of ownership of a type <code>C</code> where <code>&amp;C: IntoIterator&lt;Item = &amp;str&gt;</code>. <ul> <li>Fixed <a href="https://redirect.github.com/ParkMyCar/compact_str/issues/412"><code>issue#412</code></a> which made the <code>CompactStringExt</code> more ergonomic.</li> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/418"><code>feat: tweak the CompactStringExt trait so join_compact and concat_compact work better</code></a></li> </ul> </li> </ul> <h2>Changes</h2> <ul> <li>Fixed the <code>borsch</code> feature in <code>no_std</code> environments. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/428"><code>fix: The borsch feature with no-std</code></a>.</li> </ul> </li> <li>Implemented the <a href="https://crates.io/crates/zeroize"><code>zeroize::Zeroize</code></a> trait for <code>CompactString</code>. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/421"><code>feat: Add support for zeroize::Zeroize</code></a>.</li> </ul> </li> <li>Fixed the <code>CompactString::retain</code> method to not set length if the predicate panics. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/413"><code>fix: retain not set len if predicate panics</code></a>.</li> </ul> </li> <li>Implement <code>sqlx::postgres::PgHasArrayType</code> for <code>CompactString</code>. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/399"><code>impl sqlx::postgres::PgHasArrayType</code></a>.</li> </ul> </li> <li>Bump the <a href="https://crates.io/crates/markup"><code>markup</code></a> dependency to <code>v0.15</code>. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/415"><code>deps: upgrade to markup v0.8</code></a>.</li> </ul> </li> <li>Bump the <a href="https://crates.io/crates/rkyv"><code>rkyv</code></a> dependency to <code>v0.8</code>. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/409"><code>deps: upgrade to rkyv v0.8</code></a>.</li> </ul> </li> <li>Bump the <a href="https://crates.io/crates/sqlx"><code>sqlx</code></a> dependency to <code>v0.8</code>. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/408"><code>deps: upgrade to sqlx v0.8</code></a>.</li> </ul> </li> </ul> <h1>0.8.0</h1> <h3>July 8, 2024</h3> <h2>Breaking Changes 💥</h2> <ul> <li>Consolidate <code>CompactString::new_inline(...)</code> and <code>CompactString::from_static_str(...)</code> into <code>CompactString::const:new(...)</code>. Methods are currently marked as deprecated and will be removed in <code>v0.9.0</code>. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/336"><code>Add const_new(); remove new_inline() and from_static_str()</code></a></li> </ul> </li> <li>Minimum supported Rust version (MSRV) was bumped to <code>v1.60</code> <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/395"><code>fix: MSRV check and change MSRV to 1.60</code></a></li> </ul> </li> </ul> <h2>Changes</h2> <ul> <li>Add support for <a href="https://crates.io/crates/borsh"><code>borsh</code></a> under an optional feature. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/393"><code>Add borsh support</code></a></li> </ul> </li> <li>Add additial <code>PartialEq</code> impls for <code>CompactString</code> <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/381"><code>fix: More PartialEq impls</code></a></li> </ul> </li> <li>Match alignment of internal <code>InlineBuffer</code> and <code>Repr</code>. <ul> <li>Implemeneted in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/358"><code>Align InlineBuffer same as Repr</code></a></li> </ul> </li> <li>Fix conflict between <code>serde</code> and <code>no_std</code> features. <ul> <li>Implemented in <a href="https://redirect.github.com/ParkMyCar/compact_str/pull/347"><code>fix serde no-std issue</code></a></li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ParkMyCar/compact_str/commit/a707fdf3f849642d85c50d6546cf2b231c208e14"><code>a707fdf</code></a> update versions in examples</li> <li><a href="https://github.com/ParkMyCar/compact_str/commit/2bf1c54973579d975cd518bcb8abdd6994b866bd"><code>2bf1c54</code></a> start, bump to v0.9.0</li> <li><a href="https://github.com/ParkMyCar/compact_str/commit/be6b42a42305cf672ed6f70387dffdaa8a814cfa"><code>be6b42a</code></a> feat: Add support for <code>zeroize::Zeroize</code> (<a href="https://redirect.github.com/ParkMyCar/compact_str/issues/421">#421</a>)</li> <li><a href="https://github.com/ParkMyCar/compact_str/commit/75f25b1bb23d2b37c02dfaf84c68ef1928d2937f"><code>75f25b1</code></a> feat: tweak the <code>CompactStringExt</code> trait so <code>join_compact</code> and `concat_compac...</li> <li><a href="https://github.com/ParkMyCar/compact_str/commit/f41c016dfd61cfadc7246230b3c7ad0546b8354a"><code>f41c016</code></a> start, bump markup to 0.15 (<a href="https://redirect.github.com/ParkMyCar/compact_str/issues/417">#417</a>)</li> <li><a href="https://github.com/ParkMyCar/compact_str/commit/c9f31cdb0dce79700804eb0bbb1dc46e7a020763"><code>c9f31cd</code></a> Some slightly performance &amp; style updates (<a href="https://redirect.github.com/ParkMyCar/compact_str/issues/370">#370</a>)</li> <li><a href="https://github.com/ParkMyCar/compact_str/commit/0e48d4a5ece68263df3a968935316c36ca7b9f55"><code>0e48d4a</code></a> fix: retain not set len if predicate panics (<a href="https://redirect.github.com/ParkMyCar/compact_str/issues/413">#413</a>)</li> <li><a href="https://github.com/ParkMyCar/compact_str/commit/0e17e08a740d956bc9016e36db5aa034828681bb"><code>0e17e08</code></a> bump version of diesel for RUSTSEC-2024-0365 (<a href="https://redirect.github.com/ParkMyCar/compact_str/issues/416">#416</a>)</li> <li><a href="https://github.com/ParkMyCar/compact_str/commit/39c782746b9b6832b7727accc3fa3d88fb136a35"><code>39c7827</code></a> deps: upgrade to <code>rkyv v0.8</code> (<a href="https://redirect.github.com/ParkMyCar/compact_str/issues/409">#409</a>)</li> <li><a href="https://github.com/ParkMyCar/compact_str/commit/12b6d575d414c3f6fe59658fd1b6706098863594"><code>12b6d57</code></a> start, add CI step to install sqlite (<a href="https://redirect.github.com/ParkMyCar/compact_str/issues/415">#415</a>)</li> <li>Additional commits viewable in <a href="https://github.com/ParkMyCar/compact_str/compare/v0.8.1...v0.9.0">compare view</a></li> </ul> </details> <br /> Updates `once_cell` from 1.21.0 to 1.21.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/matklad/once_cell/blob/master/CHANGELOG.md">once_cell's changelog</a>.</em></p> <blockquote> <h2>1.21.1</h2> <ul> <li>Reduce MSRV to 1.65: <a href="https://redirect.github.com/matklad/once_cell/pull/277">#277</a>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/matklad/once_cell/commit/a70d907bfb5ee9642a28b447ab6c9624fb3e1ab2"><code>a70d907</code></a> Merge pull request <a href="https://redirect.github.com/matklad/once_cell/issues/277">#277</a> from briansmith/b/as-ptr</li> <li><a href="https://github.com/matklad/once_cell/commit/9173b99a7efe9445275799cc1c777bd32d49a8cd"><code>9173b99</code></a> Reduce MSRV to 1.65 by polyfilling <code>AtomicUsize::as_ptr()</code>.</li> <li>See full diff in <a href="https://github.com/matklad/once_cell/compare/v1.21.0...v1.21.1">compare view</a></li> </ul> </details> <br /> Updates `papaya` from 0.2.0 to 0.2.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ibraheemdev/papaya/releases">papaya's releases</a>.</em></p> <blockquote> <h2>0.2.1</h2> <ul> <li>Fixed a bug in <code>HashMap::retain</code> that may lead to memory corruption (<a href="https://redirect.github.com/ibraheemdev/papaya/issues/63">ibraheemdev/papaya#63</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ibraheemdev/papaya/commit/4f40c718166bea7a9954e1f100ee364b0661d372"><code>4f40c71</code></a> release 0.2.1</li> <li><a href="https://github.com/ibraheemdev/papaya/commit/02dae6644b9c0090705dd126536ee52403e6f738"><code>02dae66</code></a> ignore entry pointer tags in <code>HashMap::retain</code></li> <li>See full diff in <a href="https://github.com/ibraheemdev/papaya/compare/v0.2.0...v0.2.1">compare view</a></li> </ul> </details> <br /> Updates `uuid` from 1.15.1 to 1.16.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/uuid-rs/uuid/releases">uuid's releases</a>.</em></p> <blockquote> <h2>v1.16.0</h2> <h2>What's Changed</h2> <ul> <li>Mark <code>Uuid::new_v8</code> const by <a href="https://github.com/tguichaoua"><code>@​tguichaoua</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/815">uuid-rs/uuid#815</a></li> <li>Prepare for 1.16.0 release by <a href="https://github.com/KodrAus"><code>@​KodrAus</code></a> in <a href="https://redirect.github.com/uuid-rs/uuid/pull/817">uuid-rs/uuid#817</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/tguichaoua"><code>@​tguichaoua</code></a> made their first contribution in <a href="https://redirect.github.com/uuid-rs/uuid/pull/815">uuid-rs/uuid#815</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0">https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/uuid-rs/uuid/commit/c36beb14d50f835c1f1220117ca51aae64860a3e"><code>c36beb1</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/817">#817</a> from uuid-rs/cargo/v1.16.0</li> <li><a href="https://github.com/uuid-rs/uuid/commit/5338b246b7a8244cab3cfaa85b14fe1d1bcdcd96"><code>5338b24</code></a> prepare for 1.16.0 release</li> <li><a href="https://github.com/uuid-rs/uuid/commit/420f6279aeff48f0e12b0b39af43a5c149963382"><code>420f627</code></a> Merge pull request <a href="https://redirect.github.com/uuid-rs/uuid/issues/815">#815</a> from tguichaoua/new_v8_const</li> <li><a href="https://github.com/uuid-rs/uuid/commit/254258c8c7c7d6c41aaf6f573dc1731549d519b2"><code>254258c</code></a> mark <code>Uuid::new_v8</code> const</li> <li>See full diff in <a href="https://github.com/uuid-rs/uuid/compare/v1.15.1...v1.16.0">compare view</a></li> </ul> </details> <br /> Updates `aligned-vec` from 0.6.2 to 0.6.4 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sarah-quinones/aligned-vec/commit/6af6c18c831c93395f948a0e6527b8d6b9729784"><code>6af6c18</code></a> chore: Release aligned-vec version 0.6.4</li> <li><a href="https://github.com/sarah-quinones/aligned-vec/commit/6166264af8e999c14155ac82d34ed2beb4c3af45"><code>6166264</code></a> chore: Release aligned-vec version 0.6.3</li> <li><a href="https://github.com/sarah-quinones/aligned-vec/commit/405f1db19b74781df5abf35fa58d5ff704deedf3"><code>405f1db</code></a> fix wrong reported layout size</li> <li><a href="https://github.com/sarah-quinones/aligned-vec/commit/b5552477b0ca1a6ce4e03c643f4eab5211263d74"><code>b555247</code></a> Improve documentation of avec macro</li> <li>See full diff in <a href="https://github.com/sarah-ek/aligned-vec/compare/v0.6.2...v0.6.4">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2cd6feb commit 18d8072

File tree

3 files changed

+15
-29
lines changed

3 files changed

+15
-29
lines changed

Cargo.lock

Lines changed: 10 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ bumpalo = '3.16'
5858
byteorder = '1.5.0'
5959
bytes = '1.8.0'
6060
colored = "3.0.0"
61-
compact_str = '0.8.1'
61+
compact_str = '0.9.0'
6262
convert_case = "0.7.1"
6363
criterion = '0.5.1'
6464
derive-build = '0.1.1'
@@ -87,10 +87,10 @@ more-asserts = '0.3.1'
8787
num-derive = '0.4.2'
8888
num-traits = '0.2.19'
8989
num_cpus = "1.16.0"
90-
once_cell = '1.19.0'
90+
once_cell = '1.21.1'
9191
ordered-float = "5.0.0"
9292
ouroboros = '0.18.5'
93-
papaya = "0.2.0"
93+
papaya = "0.2.1"
9494
parking_lot = '0.12.3'
9595
plotters-bitmap = '0.3.6'
9696
proc-macro2 = '1.0.94'
@@ -112,7 +112,7 @@ time = '0.3.37'
112112
tokio = '1.43.0'
113113
toml = '0.8.14'
114114
tracing-appender = '0.2.3'
115-
uuid = '1.15.1'
115+
uuid = '1.16.0'
116116

117117
[workspace.dependencies.bvh]
118118
git = 'https://github.com/andrewgazelka/bvh-data'

crates/simd-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publish = false
1010

1111
[dev-dependencies]
1212
proptest = "1.5.0"
13-
aligned-vec = "0.6.2"
13+
aligned-vec = "0.6.4"
1414

1515
[lints]
1616
workspace = true

0 commit comments

Comments
 (0)