-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from kas-gui/work
Prepare impl-tools v0.10.2, impl-tools-lib v0.11.0
- Loading branch information
Showing
5 changed files
with
191 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,8 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: Install toolchain | ||
uses: dtolnay/[email protected] | ||
- name: Use Cargo.lock.msrv | ||
run: cp Cargo.lock.msrv Cargo.lock | ||
- name: Test impl-tools-lib | ||
run: cargo test --manifest-path lib/Cargo.toml --all-features --lib --tests | ||
- name: Test impl-tools | ||
|
@@ -71,5 +73,4 @@ jobs: | |
- name: rustfmt | ||
run: cargo fmt --all -- --check | ||
- name: clippy | ||
# clippy::assigning_clones should be unnecessary in rust 1.80 | ||
run: cargo clippy --all -- -A clippy::assigning_clones -D warnings | ||
run: cargo clippy --workspace -- -D warnings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "impl-tools" | ||
version = "0.10.1" | ||
version = "0.10.2" | ||
authors = ["Diggory Hardy <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT/Apache-2.0" | ||
|
@@ -23,7 +23,7 @@ default-features = false | |
version = "2.0.0" | ||
|
||
[dependencies.impl-tools-lib] | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
path = "lib" | ||
|
||
[dev-dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "impl-tools-lib" | ||
version = "0.10.1" | ||
version = "0.11.0" | ||
authors = ["Diggory Hardy <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT/Apache-2.0" | ||
|
@@ -24,3 +24,6 @@ version = "2.0.0" | |
# We need 'extra-traits' for equality testing | ||
# We need 'full' for parsing macros within macro arguments | ||
features = ["extra-traits", "full", "visit", "visit-mut"] | ||
|
||
[lints.clippy] | ||
needless_lifetimes = "allow" |