Skip to content

Commit f803b49

Browse files
authored
Merge pull request #159 from ionut-arm/update-bindgen
Update bindgen
2 parents 8bfdf2a + c892c2d commit f803b49

File tree

3 files changed

+10
-31
lines changed

3 files changed

+10
-31
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ zeroize = { version = "1.1.0", features = ["zeroize_derive"] }
2828
env_logger = "0.7.1"
2929

3030
[build-dependencies]
31-
bindgen = "0.54.0"
31+
bindgen = "0.56.0"
3232
pkg-config = "0.3.18"
3333

3434
[features]

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,15 @@ case:
3333
$ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
3434
```
3535

36+
## Minimum Supported Rust Version (MSRV)
37+
38+
At the moment we test (via CI) and support the following Rust compiler versions:
39+
40+
* On Ubuntu we test with the latest stable compiler version, as accessible through `rustup`.
41+
* On Fedora we test with the compiler version included with the Fedora 33 release.
42+
43+
If you need support for other versions of the compiler, get in touch with us to see what we can do!
44+
3645
## Community channel
3746

3847
Come and talk to us in [our Slack channel](https://app.slack.com/client/T0JK1PCN6/CPMQ9D4H1)!

tests/all-ubuntu.sh

-30
Original file line numberDiff line numberDiff line change
@@ -31,33 +31,3 @@ RUST_BACKTRACE=1 cargo build
3131
# Run the tests #
3232
#################
3333
RUST_BACKTRACE=1 RUST_LOG=info cargo test -- --test-threads=1 --nocapture
34-
35-
###################
36-
# Stop TPM server #
37-
###################
38-
pkill tpm_server
39-
40-
#############################
41-
# Install nightly toolchain #
42-
#############################
43-
rustup toolchain install nightly
44-
45-
############################
46-
# Install legacy toolchain #
47-
############################
48-
rustup toolchain install 1.38.0
49-
50-
####################
51-
# Verify doc build #
52-
####################
53-
cargo +nightly doc --features docs --verbose --no-deps
54-
55-
########################
56-
# Verify nightly build #
57-
########################
58-
cargo +nightly build
59-
60-
#####################################
61-
# Verify build with legacy compiler #
62-
#####################################
63-
RUST_BACKTRACE=1 cargo +1.38.0 build

0 commit comments

Comments
 (0)