diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-27 17:17:23 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-27 17:17:23 -0600 |
commit | 2a95c7b9d52e09aa82e54350fec514ceb69aab56 (patch) | |
tree | 0c503de418de51213f0df96d13b29fcf7c78d76a /src/main.rs | |
parent | 6fc5a5f9eda8496ca601a8db2db32b4c8e29f2ff (diff) | |
download | makers-2a95c7b9d52e09aa82e54350fec514ceb69aab56.tar.gz makers-2a95c7b9d52e09aa82e54350fec514ceb69aab56.zip |
appease clippy in command_line
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 0720ada..1c2faf5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,7 @@ clippy::cargo, clippy::nursery )] -#![allow(clippy::redundant_pub_crate)] +#![allow(clippy::redundant_pub_crate, clippy::non_ascii_literal)] use std::fs::metadata; use std::io::stdin; |