Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,19 @@ jobs:
LIBWEBAUTHN_PSL_SYSTEM_TEST: "1"
- name: Verify libwebauthn publishes cleanly
run: cargo publish --dry-run -p libwebauthn

msrv:
name: Verify MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Update apt cache
run: sudo apt-get update
- name: Install system dependencies
run: sudo apt-get install libudev-dev libdbus-1-dev libsodium-dev libnfc-dev libpcsclite-dev publicsuffix
- name: Install declared MSRV toolchain
run: rustup toolchain install 1.88 --profile minimal
- name: Check against declared MSRV
run: cargo +1.88 check --workspace --all-features
1 change: 1 addition & 0 deletions libwebauthn-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "libwebauthn-tests"
version = "0.0.0"
edition = "2021"
rust-version = "1.88"
publish = false
license-file = "../COPYING"

Expand Down
1 change: 1 addition & 0 deletions libwebauthn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ authors = [
"Isaiah Inuwa <isaiah.inuwa@gmail.com>",
]
edition = "2021"
rust-version = "1.88"
license = "LGPL-2.1-or-later"
license-file = "../COPYING"
readme = "../README.md"
Expand Down
Loading