Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump cexpr to 0.5 #2073

Merged
merged 1 commit into from Jul 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/bindgen.yml
Expand Up @@ -42,11 +42,11 @@ jobs:
profile: minimal
# MSRV below is documented in README.md, please update that if you
# change this.
toolchain: 1.40.0
toolchain: 1.44.0
override: true

- name: Build with msrv
run: rm Cargo.lock && cargo +1.40.0 build --lib
run: rm Cargo.lock && cargo +1.44.0 build --lib

quickchecking:
runs-on: ubuntu-latest
Expand Down
46 changes: 42 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions Cargo.toml
Expand Up @@ -47,7 +47,7 @@ tempfile = "3"

[dependencies]
bitflags = "1.0.3"
cexpr = "0.4"
cexpr = "0.5"
# This kinda sucks: https://github.com/rust-lang/cargo/issues/1982
clap = { version = "2", optional = true }
clang-sys = { version = "1", features = ["clang_6_0"] }
Expand All @@ -59,8 +59,6 @@ regex = { version = "1.0", default-features = false , features = [ "std", "unico
which = { version = "3.0", optional = true, default-features = false }
shlex = "1"
rustc-hash = "1.0.1"
# New validation in 0.3.6 breaks bindgen-integration:
# https://github.com/alexcrichton/proc-macro2/commit/489c642.
proc-macro2 = { version = "1", default-features = false }

[dependencies.env_logger]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -39,7 +39,7 @@ extern "C" {

## MSRV

The minimum supported Rust version is **1.40**.
The minimum supported Rust version is **1.44**.

No MSRV bump policy has been established yet, so MSRV may increase in any release.

Expand Down