summaryrefslogtreecommitdiffstats
path: root/src/help_content.rs
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2019-10-23 17:25:47 +0200
committerCanop <cano.petrole@gmail.com>2019-10-23 17:25:47 +0200
commit34d760afb02e986b4c109127ba3027f0783a0e00 (patch)
treebe53f28aed6c7e87ea9a84b2634856d15eaa94d6 /src/help_content.rs
parent1b5060a3fa7eccfa9fb5d675bcaff1d45a577581 (diff)
move to the last versions of crossterm and termimad
Diffstat (limited to 'src/help_content.rs')
-rw-r--r--src/help_content.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/help_content.rs b/src/help_content.rs
index ea4a91c..0b5ee84 100644
--- a/src/help_content.rs
+++ b/src/help_content.rs
@@ -1,7 +1,9 @@
-use crossterm_input::KeyEvent::*;
+use crossterm::KeyEvent::*;
-use crate::app_context::AppContext;
-use crate::conf::Conf;
+use crate::{
+ app_context::AppContext,
+ conf::Conf,
+};
/// build the markdown which will be displayed in the help page
pub fn build_markdown(con: &AppContext) -> String {