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
20 changes: 20 additions & 0 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
push:
branches: [main]
pull_request:
name: msrv
jobs:
check:
runs-on: ubuntu-latest
name: cargo check on MSRV
steps:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.88.0
- uses: actions/checkout@v2
- name: cargo check
uses: actions-rs/cargo@v1
with:
command: check
args: --workspace --all-features --all-targets
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ members = ["thirtyfour", "thirtyfour-macros"]
[workspace.package]
authors = ["Steve Pryde <steve@stevepryde.com>", "Vrtgs <vrtgs@vrtgs.xyz>"]
license = "MIT OR Apache-2.0"
rust-version = "1.88"
homepage = "https://github.com/stevepryde/thirtyfour"
repository = "https://github.com/stevepryde/thirtyfour"
keywords = [
Expand Down
1 change: 1 addition & 0 deletions thirtyfour-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ documentation = "https://docs.rs/thirtyfour_macros"
readme = "README.md"
authors.workspace = true
license.workspace = true
rust-version.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
Expand Down
1 change: 1 addition & 0 deletions thirtyfour/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ documentation = "https://docs.rs/thirtyfour"
readme = "README.md"
authors.workspace = true
license.workspace = true
rust-version.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion thirtyfour/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ async fn main() -> WebDriverResult<()> {

## Minimum Supported Rust Version

The MSRV for `thirtyfour` is currently latest, and so its guaranteed to run the latest stable release.
Rust 1.88.

## LICENSE

Expand Down
Loading