aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/rbw/commands.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-02-18 23:55:19 -0500
committerJesse Luehrs <doy@tozt.net>2023-02-18 23:55:19 -0500
commita54f18f445e5bb13231ab3c716a32d1706119b5f (patch)
treef08cba15c7f47261c03860f8ca4f4839f43f0e6e /src/bin/rbw/commands.rs
parent93a6fb1027243a0f35d99373d84584b33a46c202 (diff)
downloadrbw-a54f18f445e5bb13231ab3c716a32d1706119b5f.tar.gz
rbw-a54f18f445e5bb13231ab3c716a32d1706119b5f.zip
more clippy cleanups
Diffstat (limited to 'src/bin/rbw/commands.rs')
-rw-r--r--src/bin/rbw/commands.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/bin/rbw/commands.rs b/src/bin/rbw/commands.rs
index a2516d6..93f00da 100644
--- a/src/bin/rbw/commands.rs
+++ b/src/bin/rbw/commands.rs
@@ -514,7 +514,6 @@ impl DecryptedCipher {
#[derive(Debug, Clone)]
#[cfg_attr(test, derive(Eq, PartialEq))]
-#[allow(clippy::large_enum_variant)]
enum DecryptedData {
Login {
username: Option<String>,
@@ -1252,8 +1251,6 @@ fn check_config() -> anyhow::Result<()> {
fn version_or_quit() -> anyhow::Result<u32> {
crate::actions::version().map_err(|e| {
- // https://github.com/rust-lang/rust-clippy/issues/8003
- #[allow(let_underscore_drop)]
let _ = crate::actions::quit();
e
})