From 52df9bc73b884d60524dda8eee18a46da3ab2892 Mon Sep 17 00:00:00 2001 From: ChristianVisintin Date: Wed, 16 Dec 2020 15:47:02 +0100 Subject: [PATCH] Macro use for magic-crypt --- src/lib.rs | 5 ++++- src/main.rs | 2 ++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 419b65a..9353ea5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -19,7 +19,10 @@ * */ -#[macro_use] extern crate lazy_static; +#[macro_use] +extern crate lazy_static; +#[macro_use] +extern crate magic_crypt; pub mod activity_manager; pub mod bookmarks; diff --git a/src/main.rs b/src/main.rs index afd0a06..d339ecd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,6 +26,8 @@ const TERMSCP_AUTHORS: &str = env!("CARGO_PKG_AUTHORS"); extern crate getopts; #[macro_use] extern crate lazy_static; +#[macro_use] +extern crate magic_crypt; extern crate rpassword; // External libs