summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poveda Ruiz <31802960+pvdrz@users.noreply.github.com>2022-12-07 06:27:01 -0500
committerGitHub <noreply@github.com>2022-12-07 12:27:01 +0100
commit8582fb383dd00cc948eccd3c173ed46cdf61499e (patch)
treea00f1c650629acb8b5db2736c57d3f03eecadef4
parentaa9849ba06cb99a5b0917a2e7b33406fe6f76d0c (diff)
Bump `clang-sys` version (#2368)
* Bump `clang-sys` version * add libtinfo5 package to fix CI
-rw-r--r--.github/workflows/bindgen.yml6
-rw-r--r--CHANGELOG.md1
-rw-r--r--Cargo.lock4
3 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/bindgen.yml b/.github/workflows/bindgen.yml
index bc8477d5..85f5d437 100644
--- a/.github/workflows/bindgen.yml
+++ b/.github/workflows/bindgen.yml
@@ -166,7 +166,11 @@ jobs:
toolchain: stable
target: ${{matrix.target.rust}}
override: true
-
+ - name: Install libtinfo
+ if: matrix.os == 'ubuntu-latest'
+ run: |
+ sudo apt-get update
+ sudo apt-get install libtinfo5
- name: Run all the tests
env:
GITHUB_ACTIONS_OS: ${{matrix.os}}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ff6d35ff..3b7b5386 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -158,6 +158,7 @@
name.
* The `ParseCallbacks::generated_name_override` now receives `ItemInfo<'_>` as
argument instead of a `&str`.
+ * Updated the `clang-sys` crate version to 1.4.0 to support clang 15.
## Removed
diff --git a/Cargo.lock b/Cargo.lock
index ff13ebcb..ec6ba174 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -131,9 +131,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clang-sys"
-version = "1.3.3"
+version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b"
+checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
dependencies = [
"glob",
"libc",