From 9bd5c496c5ca73f813cc9931f11fcdc0a8fab5c8 Mon Sep 17 00:00:00 2001 From: Greg Zaitsev Date: Tue, 30 Jun 2020 09:45:41 +0000 Subject: [PATCH] Fix binary name --- --- a/Cargo.lock +++ b/Cargo.lock @@ -2758,6 +2758,35 @@ ] [[package]] +name = "nft" +version = "2.0.0-rc4" +dependencies = [ + "futures 0.3.5", + "log", + "nft-runtime", + "parking_lot 0.10.2", + "sc-basic-authorship", + "sc-cli", + "sc-client-api", + "sc-consensus", + "sc-consensus-aura", + "sc-executor", + "sc-finality-grandpa", + "sc-network", + "sc-service", + "sc-transaction-pool", + "sp-consensus", + "sp-consensus-aura", + "sp-core", + "sp-finality-grandpa", + "sp-inherents", + "sp-runtime", + "sp-transaction-pool", + "structopt", + "substrate-build-script-utils", +] + +[[package]] name = "nft-runtime" version = "2.0.0-rc4" dependencies = [ @@ -2800,35 +2829,6 @@ "cfg-if", "libc", "void", -] - -[[package]] -name = "node-template" -version = "2.0.0-rc4" -dependencies = [ - "futures 0.3.5", - "log", - "nft-runtime", - "parking_lot 0.10.2", - "sc-basic-authorship", - "sc-cli", - "sc-client-api", - "sc-consensus", - "sc-consensus-aura", - "sc-executor", - "sc-finality-grandpa", - "sc-network", - "sc-service", - "sc-transaction-pool", - "sp-consensus", - "sp-consensus-aura", - "sp-core", - "sp-finality-grandpa", - "sp-inherents", - "sp-runtime", - "sp-transaction-pool", - "structopt", - "substrate-build-script-utils", ] [[package]] --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -5,14 +5,15 @@ edition = '2018' homepage = 'https://substrate.dev' license = 'Unlicense' -name = 'node-template' -repository = 'https://github.com/substrate-developer-hub/substrate-node-template/' +name = 'nft' +repository = 'https://github.com/usetech-llc/nft_parachain/' version = '2.0.0-rc4' + [package.metadata.docs.rs] targets = ['x86_64-unknown-linux-gnu'] [[bin]] -name = 'node-template' +name = 'nft' [dependencies] futures = '0.3.4' -- gitstuff