Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update bindgen requirement from 0.69 to 0.70 in /fitsio-…
…sys in the cargo-packages group (#357) Updates the requirements on [bindgen](https://github.com/rust-lang/rust-bindgen) to permit the latest version. Updates `bindgen` to 0.70.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/rust-bindgen/releases">bindgen's releases</a>.</em></p> <blockquote> <h2>v0.70.0</h2> <h2>Install bindgen-cli 0.70.0</h2> <h3>Install prebuilt binaries via shell script</h3> <pre lang="sh"><code>curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rust-lang/rust-bindgen/releases/download/v0.70.0/bindgen-cli-installer.sh | sh </code></pre> <h2>Download bindgen-cli 0.70.0</h2> <table> <thead> <tr> <th>File</th> <th>Platform</th> <th>Checksum</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/rust-lang/rust-bindgen/releases/download/v0.70.0/bindgen-cli-aarch64-apple-darwin.tar.xz">bindgen-cli-aarch64-apple-darwin.tar.xz</a></td> <td>Apple Silicon macOS</td> <td><a href="https://github.com/rust-lang/rust-bindgen/releases/download/v0.70.0/bindgen-cli-aarch64-apple-darwin.tar.xz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/rust-lang/rust-bindgen/releases/download/v0.70.0/bindgen-cli-x86_64-apple-darwin.tar.xz">bindgen-cli-x86_64-apple-darwin.tar.xz</a></td> <td>Intel macOS</td> <td><a href="https://github.com/rust-lang/rust-bindgen/releases/download/v0.70.0/bindgen-cli-x86_64-apple-darwin.tar.xz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/rust-lang/rust-bindgen/releases/download/v0.70.0/bindgen-cli-x86_64-unknown-linux-gnu.tar.xz">bindgen-cli-x86_64-unknown-linux-gnu.tar.xz</a></td> <td>x64 Linux</td> <td><a href="https://github.com/rust-lang/rust-bindgen/releases/download/v0.70.0/bindgen-cli-x86_64-unknown-linux-gnu.tar.xz.sha256">checksum</a></td> </tr> </tbody> </table> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rust-lang/rust-bindgen/blob/main/CHANGELOG.md">bindgen's changelog</a>.</em></p> <blockquote> <h1>0.70.0 (2024-08-16)</h1> <h2>Added</h2> <ul> <li>Add target mappings for riscv64imac and riscv32imafc.</li> <li>Add a complex macro fallback API (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2779">#2779</a>).</li> <li>Add option to use DST structs for flexible arrays (--flexarray-dst, <a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2772">#2772</a>).</li> <li>Add option to dynamically load variables (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2812">#2812</a>).</li> <li>Add option in CLI to use rustified non-exhaustive enums (--rustified-non-exhaustive-enum, <a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2847">#2847</a>).</li> </ul> <h2>Changed</h2> <ul> <li>Remove which and lazy-static dependencies (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2809">#2809</a>, <a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2817">#2817</a>).</li> <li>Generate compile-time layout tests (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2787">#2787</a>).</li> <li>Print <code>bindgen-cli</code> errors to stderr instead of stdout (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2840">#2840</a>)</li> </ul> <h2>Removed</h2> <h2>Fixed</h2> <ul> <li>Fix <code>--formatter=prettyplease</code> not working in <code>bindgen-cli</code> by adding <code>prettyplease</code> feature and enabling it by default for <code>bindgen-cli</code> (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2789">#2789</a>) .</li> <li>Fix <code>--allowlist-item</code> so anonymous enums are no longer ignored (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2827">#2827</a>).</li> <li>Use clang_getFileLocation instead of clang_getSpellingLocation to fix clang-trunk (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2824">#2824</a>).</li> <li>Fix generated constants: <code>f64::INFINITY</code>, <code>f64::NEG_ INFINITY</code>, <code>f64::NAN</code> (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2854">#2854</a>).</li> </ul> <h2>Security</h2> <ul> <li>Update <code>tempfile</code> and <code>rustix</code> due to <a href="https://github.com/advisories/GHSA-c827-hfw6-qwvm">GHSA-c827-hfw6-qwvm</a>.</li> </ul> <h1>0.69.4 (2024-02-04)</h1> <h2>Added</h2> <h2>Changed</h2> <ul> <li>Allow older itertools. (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2745">#2745</a>)</li> </ul> <h2>Removed</h2> <h2>Fixed</h2> <h2>Security</h2> <h1>0.69.3 (2024-02-04)</h1> <h2>Added</h2> <ul> <li>Added blocklist_var (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2731">#2731</a>)</li> <li>Stabilized thiscall_abi (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2661">#2661</a>)</li> </ul> <h2>Changed</h2> <ul> <li>Use CR consistently on windows (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2698">#2698</a>)</li> <li>Replaced peeking_take_while by itertools (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2724">#2724</a>)</li> </ul> <h2>Removed</h2> <h2>Fixed</h2> <ul> <li>Try to avoid repr(packed) for explicitly aligned types when not needed (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2734">#2734</a>)</li> <li>Improved destructor handling on Windows (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2663">#2663</a>)</li> <li>Support Float16 (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2667">#2667</a>)</li> <li>Fix alignment contribution from bitfields (<a href="https://redirect.github.com/rust-lang/rust-bindgen/issues/2680">#2680</a>)</li> <li>Fixed msrv build.</li> </ul> <h2>Security</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/190ff2a6a4739f3a703125d9ed290dcd2dc9c808"><code>190ff2a</code></a> Bump crates version to 0.70.0</li> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/7efb92410813cdd8ac27d40e96e3aa3cf705d540"><code>7efb924</code></a> fix error</li> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/e4fcb548d02093cc2b0a5f8b5e8552ef594dcc3a"><code>e4fcb54</code></a> Add github action workflow that creates tags</li> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/112e90efc09f8d5a58b93ec4a32a847c726418d1"><code>112e90e</code></a> Add workflow that only bumps the crates version</li> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/cbf3a3bbe86ee7431458b5be24ee205a88bd1eea"><code>cbf3a3b</code></a> Fix job identifier</li> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/d5f9dfe4a0a4bd31860ca9082e39ad9d8c2056ec"><code>d5f9dfe</code></a> Add workflow to create release PR</li> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/26fc39b23df7cd27f34b9eec944d2964df9b0e1d"><code>26fc39b</code></a> Only trigger the publish workflow manually</li> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/4ec9950ed850c7f619431364e7ae1f194ca6ab6d"><code>4ec9950</code></a> Update the changelog</li> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/4850f1f83946e989556f8f24d25b4ac36f849be5"><code>4850f1f</code></a> Update <code>tempfile</code> and <code>rustix</code></li> <li><a href="https://github.com/rust-lang/rust-bindgen/commit/bd6794234e7a1f6fc58b2bf61e9c2555f55d82fb"><code>bd67942</code></a> Update flex-array implementation to work with Rust 1.80</li> <li>Additional commits viewable in <a href="https://github.com/rust-lang/rust-bindgen/compare/v0.69.0...v0.70.0">compare view</a></li> </ul> </details> <br /> <details> <summary>Most Recent Ignore Conditions Applied to This Pull Request</summary> | Dependency Name | Ignore Conditions | | --- | --- | | bindgen | [>= 0.63.a, < 0.64] | | bindgen | [>= 0.62.a, < 0.63] | </details> 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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
- Loading branch information