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/api.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'atuin-common/src/api.rs') diff --git a/atuin-common/src/api.rs b/atuin-common/src/api.rs index aaf8f6c5..862759ba 100644 --- a/atuin-common/src/api.rs +++ b/atuin-common/src/api.rs @@ -1,7 +1,7 @@ use std::{borrow::Cow, convert::Infallible}; use chrono::Utc; -use serde::{Deserialize, Serialize}; +use serde::Serialize; use warp::{reply::Response, Reply}; #[derive(Debug, Serialize, Deserialize)] -- cgit v1.3.1