Skip to content

Commit

Permalink
Replace unmaintained structopt with clap
Browse files Browse the repository at this point in the history
Also update rust toolchain to 1.75
  • Loading branch information
ColinKinloch committed Jan 17, 2025
1 parent 0ffb6a5 commit 2a604a9
Show file tree
Hide file tree
Showing 4 changed files with 546 additions and 505 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it
with:
toolchain: "1.73"
toolchain: "1.75"
- run: cargo check --all-targets --all-features

fmt:
Expand All @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it
with:
toolchain: "1.73"
toolchain: "1.75"
components: rustfmt
- run: cargo fmt --all --check

Expand All @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it
with:
toolchain: "1.73"
toolchain: "1.75"
- run: cargo test --all-targets --all-features
- run: cargo test --doc

Expand All @@ -50,7 +50,7 @@ jobs:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master # avoid the tag here to prevent dependabot from updating it
with:
toolchain: "1.73"
toolchain: "1.75"
components: clippy
- run: cargo clippy --all-targets --all-features -- -D warnings

Expand Down
Loading

0 comments on commit 2a604a9

Please sign in to comment.