From 2639a46a5e67fb60764fa92b1205f2546262fb80 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 27 Sep 2016 13:24:43 +0200 Subject: [PATCH] Reorder items to cargo-edit format --- Cargo.toml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5d8c70e1..71f35bcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,10 @@ spin = "0.3.4" [dependencies.hole_list_allocator] path = "libs/hole_list_allocator" +[dependencies.lazy_static] +features = ["spin_no_std"] +version = "0.2.1" + [dependencies.multiboot2] git = "https://github.com/phil-opp/multiboot2-elf64" @@ -20,17 +24,15 @@ git = "https://github.com/phil-opp/multiboot2-elf64" default-features = false version = "0.7.1" -[dependencies.lazy_static] -version = "0.2.1" -features = ["spin_no_std"] - [lib] crate-type = ["staticlib"] -[workspace] +[profile] [profile.dev] panic = "abort" [profile.release] panic = "abort" + +[workspace]