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

Update MSRV to 1.79 #457

Merged
merged 1 commit into from
Nov 30, 2024
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust_version: [ stable, 1.70.0 ]
rust_version: [ stable, 1.79.0 ]
os:
- ubuntu-latest
- windows-latest
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rust_version: [ stable, 1.70.0 ]
rust_version: [ stable, 1.79.0 ]
features:
- bluetooth
- cable
Expand All @@ -107,7 +107,7 @@ jobs:
rust_version: stable
exclude:
- os: windows-latest
rust_version: 1.70.0
rust_version: 1.79.0

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = [
"William Brown <[email protected]>",
"Michael Farrell <[email protected]>"
]
rust-version = "1.70.0"
rust-version = "1.79"
edition = "2021"
repository = "https://github.com/kanidm/webauthn-rs"
homepage = "https://github.com/kanidm/webauthn-rs"
Expand Down
1 change: 0 additions & 1 deletion compat_tester/webauthn-rs-demo-shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
name = "webauthn-rs-demo-shared"
version = "0.1.0"
edition = "2021"
rust-version = "1.70.0"

[features]
core = ["webauthn-rs-core"]
Expand Down
1 change: 0 additions & 1 deletion compat_tester/webauthn-rs-demo-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name = "webauthn_rs_demo_wasm"
version = "0.1.0"
authors = ["William Brown <[email protected]>"]
edition = "2021"
rust-version = "1.70.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
Expand Down
1 change: 0 additions & 1 deletion compat_tester/webauthn-rs-demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name = "webauthn-rs-demo"
version = "0.1.0"
authors = ["William Brown <[email protected]>"]
edition = "2021"
rust-version = "1.70.0"
build = "build.rs"

description = "Webauthn Demonstration Server"
Expand Down
1 change: 0 additions & 1 deletion tutorial/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
name = "wasm"
version = "0.1.1"
edition = "2021"
rust-version = "1.70.0"
authors = ["William Brown <[email protected]>"]

[lib]
Expand Down
Loading