From 0b6dc3e6c2b227f95f4b52b43275e3c3dad0a4ec Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 18:41:04 -0400 Subject: [PATCH] Update Rust crate cbindgen to 0.27.0 (#17033) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [cbindgen](https://togithub.com/mozilla/cbindgen) | build-dependencies | minor | `0.26.0` -> `0.27.0` | --- ### Release Notes
mozilla/cbindgen (cbindgen) ### [`v0.27.0`](https://togithub.com/mozilla/cbindgen/blob/HEAD/CHANGES#0270) [Compare Source](https://togithub.com/mozilla/cbindgen/compare/0.26.0...v0.27.0) - Revert: The `Config` struct now has a private member. \* Allow users to specify a crate version for bindings generation ([#​901](https://togithub.com/mozilla/cbindgen/issues/901)). \* Update MSRV to 1.74 ([#​912](https://togithub.com/mozilla/cbindgen/issues/912), [#​987](https://togithub.com/mozilla/cbindgen/issues/987)). \* Support #\[deprecated] on enum variants ([#​933](https://togithub.com/mozilla/cbindgen/issues/933)). \* Support integrating the package_version information in a header file comment ([#​939](https://togithub.com/mozilla/cbindgen/issues/939)). \* Add a language backend ([#​942](https://togithub.com/mozilla/cbindgen/issues/942)). \* Support generics with defaulted args ([#​959](https://togithub.com/mozilla/cbindgen/issues/959)). \* Add `VaList` compatibility ([#​970](https://togithub.com/mozilla/cbindgen/issues/970)).
--- ### Configuration 📅 **Schedule**: Branch creation - "after 3pm on Wednesday" in timezone America/New_York, Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- Release Notes: - N/A Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 10 +++++----- crates/gpui/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 67ec6d90f0..f6a57159f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2060,20 +2060,20 @@ dependencies = [ [[package]] name = "cbindgen" -version = "0.26.0" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da6bc11b07529f16944307272d5bd9b22530bc7d05751717c9d416586cedab49" +checksum = "3fce8dd7fcfcbf3a0a87d8f515194b49d6135acab73e18bd380d1d93bb1a15eb" dependencies = [ "heck 0.4.1", - "indexmap 1.9.3", + "indexmap 2.3.0", "log", "proc-macro2", "quote", "serde", "serde_json", - "syn 1.0.109", + "syn 2.0.72", "tempfile", - "toml 0.5.11", + "toml 0.8.19", ] [[package]] diff --git a/crates/gpui/Cargo.toml b/crates/gpui/Cargo.toml index 3d285ce59e..e61362b77e 100644 --- a/crates/gpui/Cargo.toml +++ b/crates/gpui/Cargo.toml @@ -86,7 +86,7 @@ embed-resource = "2.4" [target.'cfg(target_os = "macos")'.build-dependencies] bindgen = "0.65.1" -cbindgen = { version = "0.26.0", default-features = false } +cbindgen = { version = "0.27.0", default-features = false } [target.'cfg(target_os = "macos")'.dependencies] block = "0.1"