From 3208db6df2af6a5c994baf83c3230a6dfec44fd4 Mon Sep 17 00:00:00 2001 From: naskya Date: Mon, 1 Jul 2024 14:41:07 +0900 Subject: [PATCH] reorder Cargo.toml items --- fishctl/Cargo.toml | 6 +++--- macros/Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/fishctl/Cargo.toml b/fishctl/Cargo.toml index 920b414..4adfe62 100644 --- a/fishctl/Cargo.toml +++ b/fishctl/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "fishctl" description = "CLI tool for configuring Firefish" -version = "0.1.0-alpha.1" -rust-version = "1.74" -edition = "2021" license = "MIT OR Apache-2.0" +edition = "2021" +rust-version = "1.74" +version = "0.1.0-alpha.1" [dependencies] macros = { workspace = true } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 7112f6a..90ce229 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "macros" -version = "0.1.0" -edition = "2021" -license = "MIT OR Apache-2.0" publish = false +license = "MIT OR Apache-2.0" +edition = "2021" +version = "0.1.0" [lib] proc-macro = true