From f67733d059d34da59ac8f4a6b43b6769625dde98 Mon Sep 17 00:00:00 2001 From: Andreas Pasch Date: Wed, 20 Feb 2019 17:56:46 +0100 Subject: [PATCH] fix: move package declaration to top to make build script work --- Cargo.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 202ab2154..2b262a82e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,10 @@ +[package] +name = "kilt-prototype-chain" +version = "0.9.0" +edition = "2018" +authors = ["Botlabs "] +build = "build.rs" + [[bin]] name = 'node' path = 'src/main.rs' @@ -8,7 +15,7 @@ exit-future = '0.1' futures = '0.1' hex-literal = '0.1' log = '0.4' -parity-codec = +parity-codec = '3.0' parking_lot = '0.7.1' slog = '^2' tokio = '0.1' @@ -78,10 +85,3 @@ rev = '6288a4774a5ca57832896f6c501ba04aa6ef398c' vergen = '3' [profile.release] panic = 'unwind' - -[package] -name = "kilt-prototype-chain" -version = "0.9.0" -edition = '2018' -authors = ["Botlabs "] -build = "build.rs" \ No newline at end of file