git.delta.rocks / unique-network / refs/commits / 9bd5c496c5ca

difftreelog

Fix binary name

Greg Zaitsev2020-06-30parent: #9788e4e.patch.diff
in: master

2 files changed

modifiedCargo.lockdiffbeforeafterboth
--- 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]]
modifiednode/Cargo.tomldiffbeforeafterboth
before · node/Cargo.toml
1[package]2authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']3build = 'build.rs'4description = 'Substrate Node template'5edition = '2018'6homepage = 'https://substrate.dev'7license = 'Unlicense'8name = 'node-template'9repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'10version = '2.0.0-rc4'11[package.metadata.docs.rs]12targets = ['x86_64-unknown-linux-gnu']1314[[bin]]15name = 'node-template'1617[dependencies]18futures = '0.3.4'19log = '0.4.8'20parking_lot = '0.10.0'21structopt = '0.3.8'2223[dependencies.nft-runtime]24path = '../runtime'25version = '2.0.0-rc4'2627[dependencies.sc-basic-authorship]28git = 'https://github.com/paritytech/substrate.git'29tag = 'v2.0.0-rc4'30version = '0.8.0-rc4'3132[dependencies.sc-cli]33features = ['wasmtime']34git = 'https://github.com/paritytech/substrate.git'35tag = 'v2.0.0-rc4'36version = '0.8.0-rc4'3738[dependencies.sc-client-api]39git = 'https://github.com/paritytech/substrate.git'40tag = 'v2.0.0-rc4'41version = '2.0.0-rc4'4243[dependencies.sc-consensus]44git = 'https://github.com/paritytech/substrate.git'45tag = 'v2.0.0-rc4'46version = '0.8.0-rc4'4748[dependencies.sc-consensus-aura]49git = 'https://github.com/paritytech/substrate.git'50tag = 'v2.0.0-rc4'51version = '0.8.0-rc4'5253[dependencies.sc-executor]54features = ['wasmtime']55git = 'https://github.com/paritytech/substrate.git'56tag = 'v2.0.0-rc4'57version = '0.8.0-rc4'5859[dependencies.sc-finality-grandpa]60git = 'https://github.com/paritytech/substrate.git'61tag = 'v2.0.0-rc4'62version = '0.8.0-rc4'6364[dependencies.sc-network]65git = 'https://github.com/paritytech/substrate.git'66tag = 'v2.0.0-rc4'67version = '0.8.0-rc4'6869[dependencies.sc-service]70features = ['wasmtime']71git = 'https://github.com/paritytech/substrate.git'72tag = 'v2.0.0-rc4'73version = '0.8.0-rc4'7475[dependencies.sc-transaction-pool]76git = 'https://github.com/paritytech/substrate.git'77tag = 'v2.0.0-rc4'78version = '2.0.0-rc4'7980[dependencies.sp-consensus]81git = 'https://github.com/paritytech/substrate.git'82tag = 'v2.0.0-rc4'83version = '0.8.0-rc4'8485[dependencies.sp-consensus-aura]86git = 'https://github.com/paritytech/substrate.git'87tag = 'v2.0.0-rc4'88version = '0.8.0-rc4'8990[dependencies.sp-core]91git = 'https://github.com/paritytech/substrate.git'92tag = 'v2.0.0-rc4'93version = '2.0.0-rc4'9495[dependencies.sp-finality-grandpa]96git = 'https://github.com/paritytech/substrate.git'97tag = 'v2.0.0-rc4'98version = '2.0.0-rc4'99100[dependencies.sp-inherents]101git = 'https://github.com/paritytech/substrate.git'102tag = 'v2.0.0-rc4'103version = '2.0.0-rc4'104105[dependencies.sp-runtime]106git = 'https://github.com/paritytech/substrate.git'107tag = 'v2.0.0-rc4'108version = '2.0.0-rc4'109110[dependencies.sp-transaction-pool]111git = 'https://github.com/paritytech/substrate.git'112tag = 'v2.0.0-rc4'113version = '2.0.0-rc4'114[build-dependencies.substrate-build-script-utils]115git = 'https://github.com/paritytech/substrate.git'116tag = 'v2.0.0-rc4'117version = '2.0.0-rc4'
after · node/Cargo.toml
1[package]2authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']3build = 'build.rs'4description = 'Substrate Node template'5edition = '2018'6homepage = 'https://substrate.dev'7license = 'Unlicense'8name = 'nft'9repository = 'https://github.com/usetech-llc/nft_parachain/'10version = '2.0.0-rc4'1112[package.metadata.docs.rs]13targets = ['x86_64-unknown-linux-gnu']1415[[bin]]16name = 'nft'1718[dependencies]19futures = '0.3.4'20log = '0.4.8'21parking_lot = '0.10.0'22structopt = '0.3.8'2324[dependencies.nft-runtime]25path = '../runtime'26version = '2.0.0-rc4'2728[dependencies.sc-basic-authorship]29git = 'https://github.com/paritytech/substrate.git'30tag = 'v2.0.0-rc4'31version = '0.8.0-rc4'3233[dependencies.sc-cli]34features = ['wasmtime']35git = 'https://github.com/paritytech/substrate.git'36tag = 'v2.0.0-rc4'37version = '0.8.0-rc4'3839[dependencies.sc-client-api]40git = 'https://github.com/paritytech/substrate.git'41tag = 'v2.0.0-rc4'42version = '2.0.0-rc4'4344[dependencies.sc-consensus]45git = 'https://github.com/paritytech/substrate.git'46tag = 'v2.0.0-rc4'47version = '0.8.0-rc4'4849[dependencies.sc-consensus-aura]50git = 'https://github.com/paritytech/substrate.git'51tag = 'v2.0.0-rc4'52version = '0.8.0-rc4'5354[dependencies.sc-executor]55features = ['wasmtime']56git = 'https://github.com/paritytech/substrate.git'57tag = 'v2.0.0-rc4'58version = '0.8.0-rc4'5960[dependencies.sc-finality-grandpa]61git = 'https://github.com/paritytech/substrate.git'62tag = 'v2.0.0-rc4'63version = '0.8.0-rc4'6465[dependencies.sc-network]66git = 'https://github.com/paritytech/substrate.git'67tag = 'v2.0.0-rc4'68version = '0.8.0-rc4'6970[dependencies.sc-service]71features = ['wasmtime']72git = 'https://github.com/paritytech/substrate.git'73tag = 'v2.0.0-rc4'74version = '0.8.0-rc4'7576[dependencies.sc-transaction-pool]77git = 'https://github.com/paritytech/substrate.git'78tag = 'v2.0.0-rc4'79version = '2.0.0-rc4'8081[dependencies.sp-consensus]82git = 'https://github.com/paritytech/substrate.git'83tag = 'v2.0.0-rc4'84version = '0.8.0-rc4'8586[dependencies.sp-consensus-aura]87git = 'https://github.com/paritytech/substrate.git'88tag = 'v2.0.0-rc4'89version = '0.8.0-rc4'9091[dependencies.sp-core]92git = 'https://github.com/paritytech/substrate.git'93tag = 'v2.0.0-rc4'94version = '2.0.0-rc4'9596[dependencies.sp-finality-grandpa]97git = 'https://github.com/paritytech/substrate.git'98tag = 'v2.0.0-rc4'99version = '2.0.0-rc4'100101[dependencies.sp-inherents]102git = 'https://github.com/paritytech/substrate.git'103tag = 'v2.0.0-rc4'104version = '2.0.0-rc4'105106[dependencies.sp-runtime]107git = 'https://github.com/paritytech/substrate.git'108tag = 'v2.0.0-rc4'109version = '2.0.0-rc4'110111[dependencies.sp-transaction-pool]112git = 'https://github.com/paritytech/substrate.git'113tag = 'v2.0.0-rc4'114version = '2.0.0-rc4'115[build-dependencies.substrate-build-script-utils]116git = 'https://github.com/paritytech/substrate.git'117tag = 'v2.0.0-rc4'118version = '2.0.0-rc4'