Skip to content

Commit

Permalink
Merge pull request #11 from KILTprotocol/bugfix/ap_fix_release_build_…
Browse files Browse the repository at this point in the history
…error

fix: move package declaration to top to make build script work
  • Loading branch information
foby authored Feb 20, 2019
2 parents b7745f5 + f67733d commit 155c6f4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
[package]
name = "kilt-prototype-chain"
version = "0.9.0"
edition = "2018"
authors = ["Botlabs <admin@botlabs.org>"]
build = "build.rs"

[[bin]]
name = 'node'
path = 'src/main.rs'
Expand All @@ -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'
Expand Down Expand Up @@ -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 <admin@botlabs.org>"]
build = "build.rs"

0 comments on commit 155c6f4

Please sign in to comment.