diff --git a/.github/workflows/sys-bindings-generator.yml b/.github/workflows/sys-bindings-generator.yml index c57f8b31083..6f903ac8399 100644 --- a/.github/workflows/sys-bindings-generator.yml +++ b/.github/workflows/sys-bindings-generator.yml @@ -51,7 +51,16 @@ jobs: strategy: fail-fast: true matrix: - target: [ aarch64-unknown-linux-gnu, i686-unknown-linux-gnu, aarch64-unknown-linux-musl, x86_64-unknown-linux-musl ] + target: + - aarch64-unknown-linux-gnu + - i686-unknown-linux-gnu + - aarch64-unknown-linux-musl + - x86_64-unknown-linux-musl + # collect symbols from additional platforms, although we won't generate bindings for them + - arm-unknown-linux-gnueabi + - armv7-unknown-linux-gnueabihf + - powerpc-unknown-linux-gnu + - powerpc64le-unknown-linux-gnu steps: - uses: actions/checkout@v4 with: diff --git a/aws-lc-sys/Cargo.toml b/aws-lc-sys/Cargo.toml index 40f4527f6f9..6a46fc5d37f 100644 --- a/aws-lc-sys/Cargo.toml +++ b/aws-lc-sys/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "aws-lc-sys" description = "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project." -version = "0.20.0" -links = "aws_lc_0_20_0" +version = "0.20.1" +links = "aws_lc_0_20_1" authors = ["AWS-LC"] edition = "2021" repository = "https://github.com/aws/aws-lc-rs"