aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-common/src/api.rs
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2021-05-10 22:16:07 +0100
committerGitHub <noreply@github.com>2021-05-10 21:16:07 +0000
commitfe4578747403e96f75bc495a65724e515199490a (patch)
treec7020e60528c39b39203b16b03fc6e27882f245e /atuin-common/src/api.rs
parentRelease v0.7.0 (#103) (diff)
downloadatuin-fe4578747403e96f75bc495a65724e515199490a.zip
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 <conradludgate@gmail.com>
Diffstat (limited to '')
-rw-r--r--atuin-common/src/api.rs2
1 files changed, 1 insertions, 1 deletions
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)]