diff options
author | 2023-09-20 05:36:11 +0200 | |
---|---|---|
committer | 2023-09-20 05:36:11 +0200 | |
commit | 432d9f5f97a7312878f2f86ead13b6742638f7e8 (patch) | |
tree | c4c59d22f83bfdd7a41960cea2746caa390508fe /.cargo | |
parent | f8f1a8634402a5eb4275ff0814d03a3104fea65a (diff) | |
download | iced-432d9f5f97a7312878f2f86ead13b6742638f7e8.tar.gz iced-432d9f5f97a7312878f2f86ead13b6742638f7e8.tar.bz2 iced-432d9f5f97a7312878f2f86ead13b6742638f7e8.zip |
Fix `clippy::unused_async`
Diffstat (limited to '.cargo')
-rw-r--r-- | .cargo/config.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml index 2c6b20b6..9e265aa9 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -8,7 +8,8 @@ clippy --workspace --no-deps -- \ -D clippy::match-wildcard-for-single-variants \ -D clippy::redundant-closure-for-method-calls \ -D clippy::filter_map_next \ - -D clippy::manual_let_else + -D clippy::manual_let_else \ + -D clippy::unused_async """ nitpick = """ |