From 42816d3d09aa59f15dbc2efe6719652c452bbedf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=AE=E3=83=A3=E3=83=A9?= Date: Mon, 19 Apr 2021 22:09:07 +0900 Subject: [PATCH] Fix order of derive helper attributes (#179) --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 6781bda..5ac7c42 100644 --- a/src/config.rs +++ b/src/config.rs @@ -24,8 +24,8 @@ fn default_bold() -> bool { false } -#[serde(rename_all = "lowercase")] #[derive(Copy, Clone, Debug, Serialize, Deserialize, PartialEq, Eq, PartialOrd, Ord)] +#[serde(rename_all = "lowercase")] pub enum RawColor { Black, Red,