aboutsummaryrefslogtreecommitdiffstats
path: root/src/parser.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-07-06 12:32:12 -0400
committerJesse Luehrs <doy@tozt.net>2019-07-06 12:37:57 -0400
commitc87eba973da4b756ee8011c0b997ae9b95372933 (patch)
treeca5c8a416769202ac353b7d327ff6150da104a5a /src/parser.rs
parentf6340bebd450d7ad166ac57b3618579f614c9f0c (diff)
downloadnbsh-old-c87eba973da4b756ee8011c0b997ae9b95372933.tar.gz
nbsh-old-c87eba973da4b756ee8011c0b997ae9b95372933.zip
there's no reason to import these by name
Diffstat (limited to 'src/parser.rs')
-rw-r--r--src/parser.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.rs b/src/parser.rs
index d8d1dd6..7a7ec98 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -1,6 +1,6 @@
-use snafu::{OptionExt, Snafu};
+use snafu::OptionExt as _;
-#[derive(Debug, Snafu)]
+#[derive(Debug, snafu::Snafu)]
pub enum Error {
#[snafu(display("No command given"))]
CommandRequired,