alpha.6 to github (#37)

* alpha.6 to github

* fix format
main
Ricardo Rius 2020-05-06 18:39:30 +02:00 committed by GitHub
parent 6aa91b6e04
commit 6c1d11508c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 388 additions and 419 deletions

680
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -22,57 +22,86 @@ path = '../runtime'
version = '2.0.0-alpha.6' version = '2.0.0-alpha.6'
[dependencies.sc-basic-authorship] [dependencies.sc-basic-authorship]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sc-cli] [dependencies.sc-cli]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sc-client] [dependencies.sc-client]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sc-client-api] [dependencies.sc-client-api]
version = '2.0.0-alpha.6' git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-alpha.6'
[dependencies.sc-consensus-aura] [dependencies.sc-consensus-aura]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sc-executor] [dependencies.sc-executor]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sc-finality-grandpa] [dependencies.sc-finality-grandpa]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sc-network] [dependencies.sc-network]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sc-service] [dependencies.sc-service]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sc-transaction-pool] [dependencies.sc-transaction-pool]
version = '2.0.0-alpha.6' git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-alpha.6'
[dependencies.sp-consensus] [dependencies.sp-consensus]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sp-consensus-aura] [dependencies.sp-consensus-aura]
git = 'https://github.com/paritytech/substrate.git'
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sp-core] [dependencies.sp-core]
version = '2.0.0-alpha.6' git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-alpha.6'
[dependencies.sp-finality-grandpa] [dependencies.sp-finality-grandpa]
version = '2.0.0-alpha.6' git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-alpha.6'
[dependencies.sp-inherents] [dependencies.sp-inherents]
version = '2.0.0-alpha.6' git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-alpha.6'
[dependencies.sp-runtime] [dependencies.sp-runtime]
version = '2.0.0-alpha.6' git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-alpha.6'
[dependencies.sp-transaction-pool] [dependencies.sp-transaction-pool]
version = '2.0.0-alpha.6' git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-alpha.6'
[build-dependencies.substrate-build-script-utils] [build-dependencies.substrate-build-script-utils]
version = '2.0.0-alpha.6' git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-alpha.6'
[[bin]] [[bin]]
name = 'node-template' name = 'node-template'

View File

@ -18,23 +18,29 @@ package = 'parity-scale-codec'
version = '1.3.0' version = '1.3.0'
[dependencies.frame-support] [dependencies.frame-support]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.frame-system] [dependencies.frame-system]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dev-dependencies.sp-core] [dev-dependencies.sp-core]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dev-dependencies.sp-io] [dev-dependencies.sp-io]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dev-dependencies.sp-runtime] [dev-dependencies.sp-runtime]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[features] [features]
default = ['std'] default = ['std']

View File

@ -1,12 +1,14 @@
[dependencies.aura] [dependencies.aura]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
package = 'pallet-aura' package = 'pallet-aura'
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.balances] [dependencies.balances]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
package = 'pallet-balances' package = 'pallet-balances'
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.codec] [dependencies.codec]
default-features = false default-features = false
@ -15,22 +17,26 @@ package = 'parity-scale-codec'
version = '1.3.0' version = '1.3.0'
[dependencies.frame-executive] [dependencies.frame-executive]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.frame-support] [dependencies.frame-support]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.grandpa] [dependencies.grandpa]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
package = 'pallet-grandpa' package = 'pallet-grandpa'
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.randomness-collective-flip] [dependencies.randomness-collective-flip]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
package = 'pallet-randomness-collective-flip' package = 'pallet-randomness-collective-flip'
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.serde] [dependencies.serde]
features = ['derive'] features = ['derive']
@ -38,62 +44,77 @@ optional = true
version = '1.0.101' version = '1.0.101'
[dependencies.sp-api] [dependencies.sp-api]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-block-builder] [dependencies.sp-block-builder]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-consensus-aura] [dependencies.sp-consensus-aura]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '0.8.0-alpha.6' version = '0.8.0-alpha.6'
tag = 'v2.0.0-alpha.6'
[dependencies.sp-core] [dependencies.sp-core]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-inherents] [dependencies.sp-inherents]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-io] [dependencies.sp-io]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-offchain] [dependencies.sp-offchain]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-runtime] [dependencies.sp-runtime]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-session] [dependencies.sp-session]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-std] [dependencies.sp-std]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-transaction-pool] [dependencies.sp-transaction-pool]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sp-version] [dependencies.sp-version]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.sudo] [dependencies.sudo]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
package = 'pallet-sudo' package = 'pallet-sudo'
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.system] [dependencies.system]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
package = 'frame-system' package = 'frame-system'
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.template] [dependencies.template]
default-features = false default-features = false
@ -102,16 +123,19 @@ path = '../pallets/template'
version = '2.0.0-alpha.6' version = '2.0.0-alpha.6'
[dependencies.timestamp] [dependencies.timestamp]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
package = 'pallet-timestamp' package = 'pallet-timestamp'
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[dependencies.transaction-payment] [dependencies.transaction-payment]
git = 'https://github.com/paritytech/substrate.git'
default-features = false default-features = false
package = 'pallet-transaction-payment' package = 'pallet-transaction-payment'
version = '2.0.0-alpha.6' tag = 'v2.0.0-alpha.6'
[build-dependencies.wasm-builder-runner] [build-dependencies.wasm-builder-runner]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-wasm-builder-runner' package = 'substrate-wasm-builder-runner'
version = '1.0.5' version = '1.0.5'