We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6acf6b + f30c216 commit a5d26a4Copy full SHA for a5d26a4
.cirrus.yml
@@ -6,7 +6,7 @@ clippy_task:
6
cargo_cache:
7
folder: $CARGO_HOME/registry
8
fingerprint_script: cat Cargo.lock
9
- clippy_script: cargo clippy
+ clippy_script: cargo clippy -- -D warnings
10
before_cache_script: rm -rf $CARGO_HOME/registry/index
11
12
rustfmt_task:
src/api.rs
@@ -271,7 +271,7 @@ impl Keyring {
271
272
let mut keys = Vec::new();
273
let mut keyrings = Vec::new();
274
- for key in buffer.into_iter().map(|id| Key::new_impl(id)) {
+ for key in buffer.into_iter().map(Key::new_impl) {
275
match key.description() {
276
Ok(description) => {
277
if description.type_ == keytypes::Keyring::name() {
0 commit comments