Skip to content

Commit 0acf2d6

Browse files
committed
fix ci
1 parent 6d95044 commit 0acf2d6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ci.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ cargo fmt --check
2424
for feature_set in "${features[@]}"; do
2525
echo $feature_set
2626
cargo test --locked --features="$feature_set" --all-targets
27-
cargo clippy --locked --features="$feature_set" --all-targets -- -D warnings
27+
cargo clippy --locked --features="$feature_set" --all-targets -- -D warnings -A clippy::empty-docs
2828
done
2929

3030
for example in "${examples[@]}"; do
3131
cargo test $example
32-
cargo clippy $example -- -D warnings
32+
cargo clippy $example -- -D warnings -A clippy::empty-docs
3333
done

src/communication.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ pub enum Product {
157157
pub struct Info {
158158
pub version: semver::Version,
159159
pub product: Product,
160+
#[allow(dead_code)]
160161
pub unlocked: bool,
161162
}
162163

0 commit comments

Comments
 (0)