From fe4578747403e96f75bc495a65724e515199490a Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Mon, 10 May 2021 22:16:07 +0100 Subject: Re-add macro_use to atuin-common (#107) * Re-add macro_use to atuin-common When build as a dependency, the macro is available from another crate. When you try to build common by itself, the macro is not found. Magic, huh? * chore: remove unneeded use - clippy is confused Co-authored-by: Conrad Ludgate --- atuin-common/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'atuin-common/src/lib.rs') diff --git a/atuin-common/src/lib.rs b/atuin-common/src/lib.rs index e76a7abb..77cd644d 100644 --- a/atuin-common/src/lib.rs +++ b/atuin-common/src/lib.rs @@ -1,4 +1,7 @@ #![forbid(unsafe_code)] +#[macro_use] +extern crate serde_derive; + pub mod api; pub mod utils; -- cgit v1.3.1