solutions/runtime/Cargo.toml

204 lines
4.9 KiB
TOML
Raw Normal View History

2020-07-25 12:35:30 +00:00
[package]
authors = ['Substrate DevHub <https://github.com/substrate-developer-hub>']
edition = '2018'
homepage = 'https://substrate.dev'
license = 'Unlicense'
name = 'node-template-runtime'
repository = 'https://github.com/substrate-developer-hub/substrate-node-template/'
2020-08-21 11:20:35 +00:00
version = '2.0.0-rc6'
2020-07-25 12:35:30 +00:00
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
2020-08-21 11:20:35 +00:00
[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
version = '1.3.4'
[dependencies.frame-executive]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2020-08-21 11:20:35 +00:00
[dependencies.frame-support]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2020-08-21 11:20:35 +00:00
[dependencies.frame-system]
2019-08-29 15:44:46 +00:00
default-features = false
2020-08-21 11:20:35 +00:00
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2020-08-21 11:20:35 +00:00
[dependencies.frame-system-rpc-runtime-api]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-12-16 20:46:39 +00:00
2020-08-21 11:20:35 +00:00
[dependencies.pallet-aura]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
[dependencies.pallet-balances]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
[dependencies.pallet-grandpa]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
[dependencies.pallet-randomness-collective-flip]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
[dependencies.pallet-sudo]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2020-08-21 11:20:35 +00:00
[dependencies.pallet-timestamp]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-12-16 20:46:39 +00:00
2020-08-21 11:20:35 +00:00
[dependencies.pallet-transaction-payment]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
[dependencies.pallet-transaction-payment-rpc-runtime-api]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-12-16 20:46:39 +00:00
[dependencies.serde]
features = ['derive']
optional = true
version = '1.0.101'
[dependencies.sp-api]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-block-builder]
2019-08-29 15:44:46 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-consensus-aura]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '0.8.0-rc6'
2019-10-20 12:22:24 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-core]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-inherents]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-offchain]
2019-08-29 15:44:46 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-runtime]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-session]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-std]
2019-08-29 15:44:46 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-transaction-pool]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.sp-version]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-08-21 11:20:35 +00:00
tag = 'v2.0.0-rc6'
version = '2.0.0-rc6'
2020-03-05 16:53:25 +00:00
[dependencies.template]
default-features = false
package = 'pallet-template'
path = '../pallets/template'
2020-08-21 11:20:35 +00:00
version = '2.0.0-rc6'
2020-07-25 12:35:30 +00:00
[features]
default = ['std']
std = [
'codec/std',
'frame-executive/std',
'frame-support/std',
2020-08-21 11:20:35 +00:00
'frame-system/std',
'frame-system-rpc-runtime-api/std',
'pallet-aura/std',
'pallet-balances/std',
'pallet-grandpa/std',
'pallet-randomness-collective-flip/std',
'pallet-sudo/std',
'pallet-timestamp/std',
'pallet-transaction-payment/std',
'pallet-transaction-payment-rpc-runtime-api/std',
'serde',
2020-07-25 12:35:30 +00:00
'sp-api/std',
'sp-block-builder/std',
'sp-consensus-aura/std',
'sp-core/std',
'sp-inherents/std',
'sp-offchain/std',
'sp-runtime/std',
'sp-session/std',
'sp-std/std',
'sp-transaction-pool/std',
'sp-version/std',
'template/std',
]
2020-08-21 11:20:35 +00:00
[build-dependencies.wasm-builder-runner]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-wasm-builder-runner'
tag = 'v2.0.0-rc6'
version = '1.0.5'