summaryrefslogtreecommitdiffstats
path: root/src/app.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2019-01-19 10:15:56 -0500
committerAndrew Gallant <jamslam@gmail.com>2019-01-19 10:44:30 -0500
commit7a6a40bae18f89bcfc6997479d7202d2c098e964 (patch)
tree2d75e646bd424e858570e728d370f26af6c0d6a6 /src/app.rs
parent1e9ee2cc85da6f18b72ea554010810c317c31031 (diff)
edition: move core ripgrep to Rust 2018
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app.rs b/src/app.rs
index 8d8cdad2..5b25b72f 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -9,7 +9,8 @@
// is where we read clap's configuration from the end user's arguments and turn
// it into a ripgrep-specific configuration type that is not coupled with clap.
-use clap::{self, App, AppSettings};
+use clap::{self, App, AppSettings, crate_authors, crate_version};
+use lazy_static::lazy_static;
const ABOUT: &str = "
ripgrep (rg) recursively searches your current directory for a regex pattern.