File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ install:
2222
2323script :
2424 - cargo xbuild --release --target target.json
25- - cargo xclippy
25+ - cargo xclippy --target target.json
2626 - cargo clippy --all-targets --all-features
2727 - cargo fmt --all -- --check
2828 - cargo test
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ version = "0.1.0"
44authors = [" Rob Bradford <robert.bradford@intel.com>" ]
55edition = " 2018"
66
7- # the profile used for `cargo build`
7+ # Despite "panic-strategy": "abort" being set in target.json, panic = "abort" is
8+ # needed here to make "cargo check" and "cargo clippy" run without errors.
89[profile .dev ]
9- panic = " abort" # disable stack unwinding on panic
10+ panic = " abort"
1011lto = true
1112
12- # the profile used for `cargo build --release`
1313[profile .release ]
14- panic = " abort" # disable stack unwinding on panic
14+ panic = " abort"
1515lto = true
1616
1717[dependencies ]
You can’t perform that action at this time.
0 commit comments