solutions/runtime/Cargo.toml

156 lines
4.0 KiB
TOML
Raw Normal View History

2019-08-29 15:44:46 +00:00
[dependencies.babe]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'srml-babe'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.babe-primitives]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-consensus-babe-primitives'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.balances]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'srml-balances'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.client]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-client'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.codec]
default-features = false
features = ['derive']
package = 'parity-scale-codec'
version = '1.0.0'
[dependencies.executive]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'srml-executive'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.grandpa]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'srml-grandpa'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.indices]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'srml-indices'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.offchain-primitives]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-offchain-primitives'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.primitives]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'substrate-primitives'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.rstd]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'sr-std'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.runtime-io]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'sr-io'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.safe-mix]
default-features = false
version = '1.0.0'
2019-08-29 15:44:46 +00:00
[dependencies.serde]
features = ['derive']
optional = true
version = '1.0.101'
2019-08-29 15:44:46 +00:00
[dependencies.sr-primitives]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.substrate-session]
default-features = false
git = 'https://github.com/paritytech/substrate.git'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.sudo]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'srml-sudo'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.support]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'srml-support'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.system]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'srml-system'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.timestamp]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'srml-timestamp'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
2019-08-29 15:44:46 +00:00
[dependencies.version]
default_features = false
git = 'https://github.com/paritytech/substrate.git'
package = 'sr-version'
rev = '3dedd246c62255ba6f9b777ecba318dfc2078d85'
[build-dependencies.wasm-builder-runner]
package = 'substrate-wasm-builder-runner'
version = '1.0.2'
[package]
authors = ['Anonymous']
edition = '2018'
name = 'node-template-runtime'
version = '2.0.0'
[features]
default = ['std']
std = [
'codec/std',
'client/std',
'rstd/std',
'runtime-io/std',
'support/std',
'balances/std',
'babe/std',
'babe-primitives/std',
'executive/std',
'indices/std',
'grandpa/std',
'primitives/std',
'sr-primitives/std',
'system/std',
'timestamp/std',
'sudo/std',
'version/std',
'serde',
'safe-mix/std',
'offchain-primitives/std',
'substrate-session/std',
]