solutions/runtime/Cargo.toml

199 lines
4.7 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/'
version = '2.0.0-rc5'
[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
2019-12-16 20:46:39 +00:00
[dependencies.aura]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2019-12-16 20:46:39 +00:00
package = 'pallet-aura'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2019-08-29 15:44:46 +00:00
[dependencies.balances]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2019-12-16 20:46:39 +00:00
package = 'pallet-balances'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2019-08-29 15:44:46 +00:00
[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
version = '1.3.1'
2019-08-29 15:44:46 +00:00
2019-12-16 20:46:39 +00:00
[dependencies.frame-executive]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2019-12-16 20:46:39 +00:00
[dependencies.frame-support]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2019-08-29 15:44:46 +00:00
[dependencies.grandpa]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2019-12-16 20:46:39 +00:00
package = 'pallet-grandpa'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2019-12-16 20:46:39 +00:00
[dependencies.randomness-collective-flip]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2019-12-16 20:46:39 +00:00
package = 'pallet-randomness-collective-flip'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2019-12-16 20:46:39 +00:00
[dependencies.serde]
2020-07-28 10:57:49 +00:00
default-features = false
2019-12-16 20:46:39 +00:00
features = ['derive']
optional = true
version = '1.0.101'
[dependencies.sp-api]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '0.8.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
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-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2019-12-16 20:46:39 +00:00
[dependencies.sudo]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2019-12-16 20:46:39 +00:00
package = 'pallet-sudo'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2019-08-29 15:44:46 +00:00
[dependencies.system]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2019-12-16 20:46:39 +00:00
package = 'frame-system'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2020-03-05 16:53:25 +00:00
[dependencies.template]
default-features = false
package = 'pallet-template'
path = '../pallets/template'
2020-07-25 12:35:30 +00:00
version = '2.0.0-rc5'
2019-08-29 15:44:46 +00:00
[dependencies.timestamp]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2019-12-16 20:46:39 +00:00
package = 'pallet-timestamp'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2019-10-20 12:22:24 +00:00
[dependencies.transaction-payment]
2019-12-16 20:46:39 +00:00
default-features = false
git = 'https://github.com/paritytech/substrate.git'
2019-12-16 20:46:39 +00:00
package = 'pallet-transaction-payment'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '2.0.0-rc5'
2020-06-10 16:47:28 +00:00
[build-dependencies.wasm-builder-runner]
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-wasm-builder-runner'
2020-07-25 12:35:30 +00:00
tag = 'v2.0.0-rc5'
version = '1.0.5'
2020-07-25 12:35:30 +00:00
[features]
default = ['std']
std = [
'aura/std',
'balances/std',
'codec/std',
'frame-executive/std',
'frame-support/std',
'grandpa/std',
'randomness-collective-flip/std',
2020-07-28 10:57:49 +00:00
'serde/std',
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',
'sudo/std',
'system/std',
'timestamp/std',
'transaction-payment/std',
'template/std',
]