123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- [package]
- authors = ['Joystream']
- edition = '2018'
- name = 'joystream-node-runtime'
- version = '6.0.0'
- [features]
- default = ['std']
- no_std = []
- std = [
- 'codec/std',
- 'substrate-client/std',
- 'rstd/std',
- 'runtime-io/std',
- 'srml-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',
- 'forum/std',
- ]
- [dependencies.babe]
- default-features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'srml-babe'
- branch = 'master'
- [dependencies.babe-primitives]
- default-features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'substrate-consensus-babe-primitives'
- branch = 'master'
- [dependencies.balances]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'srml-balances'
- branch = 'master'
- [dependencies.substrate-client]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'substrate-client'
- branch = 'master'
- [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'
- branch = 'master'
- [dependencies.grandpa]
- default-features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'srml-grandpa'
- branch = 'master'
- [dependencies.indices]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'srml-indices'
- branch = 'master'
- [dependencies.offchain-primitives]
- default-features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'substrate-offchain-primitives'
- branch = 'master'
- #renamed from runtime-primitives
- [dependencies.primitives]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'substrate-primitives'
- branch = 'master'
- [dependencies.rstd]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'sr-std'
- branch = 'master'
- [dependencies.runtime-io]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'sr-io'
- branch = 'master'
- [dependencies.safe-mix]
- default-features = false
- version = '1.0'
- [dependencies.serde]
- features = ['derive']
- optional = true
- version = '1.0'
- [dependencies.sr-primitives]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- branch = 'master'
- [dependencies.substrate-session]
- default-features = false
- git = 'https://github.com/paritytech/substrate.git'
- branch = 'master'
- [dependencies.sudo]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'srml-sudo'
- branch = 'master'
- [dependencies.srml-support]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'srml-support'
- branch = 'master'
- [dependencies.system]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'srml-system'
- branch = 'master'
- [dependencies.timestamp]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'srml-timestamp'
- branch = 'master'
- [dependencies.version]
- default_features = false
- git = 'https://github.com/paritytech/substrate.git'
- package = 'sr-version'
- branch = 'master'
- [build-dependencies.wasm-builder-runner]
- package = 'substrate-wasm-builder-runner'
- version = '1.0.2'
- [dependencies.forum]
- default_features = false
- git = 'https://github.com/mnaamani/substrate-forum-module'
- package = 'substrate-forum-module'
- branch = "substrate-v2"
- # Before releasing Rome - finalize and tag release new forum and update this
- # tag = "v1.0.0"
|