|
@@ -4,7 +4,7 @@ edition = '2018'
|
|
|
name = 'joystream-node-runtime'
|
|
|
# Follow convention: https://github.com/Joystream/substrate-runtime-joystream/issues/1
|
|
|
# {Authoring}.{Spec}.{Impl} of the RuntimeVersion
|
|
|
-version = '8.0.1'
|
|
|
+version = '8.1.0'
|
|
|
|
|
|
[dependencies]
|
|
|
# Third-party dependencies
|
|
@@ -76,8 +76,9 @@ proposals-engine = { package = 'pallet-proposals-engine', default-features = fal
|
|
|
proposals-discussion = { package = 'pallet-proposals-discussion', default-features = false, path = '../runtime-modules/proposals/discussion'}
|
|
|
proposals-codex = { package = 'pallet-proposals-codex', default-features = false, path = '../runtime-modules/proposals/codex'}
|
|
|
content-directory = { package = 'pallet-content-directory', default-features = false, path = '../runtime-modules/content-directory' }
|
|
|
-pallet_constitution = { package = 'pallet-constitution', default-features = false, path = '../runtime-modules/constitution' }
|
|
|
+pallet-constitution = { package = 'pallet-constitution', default-features = false, path = '../runtime-modules/constitution' }
|
|
|
staking-handler = { package = 'pallet-staking-handler', default-features = false, path = '../runtime-modules/staking-handler'}
|
|
|
+bounty = { package = 'pallet-bounty', default-features = false, path = '../runtime-modules/bounty'}
|
|
|
|
|
|
[dev-dependencies]
|
|
|
sp-io = { package = 'sp-io', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = 'a200cdb93c6af5763b9c7bf313fa708764ac88ca'}
|
|
@@ -149,8 +150,9 @@ std = [
|
|
|
'proposals-discussion/std',
|
|
|
'proposals-codex/std',
|
|
|
'content-directory/std',
|
|
|
- 'pallet_constitution/std',
|
|
|
+ 'pallet-constitution/std',
|
|
|
'staking-handler/std',
|
|
|
+ 'bounty/std',
|
|
|
]
|
|
|
runtime-benchmarks = [
|
|
|
"frame-system/runtime-benchmarks",
|
|
@@ -167,12 +169,13 @@ runtime-benchmarks = [
|
|
|
"proposals-discussion/runtime-benchmarks",
|
|
|
"proposals-engine/runtime-benchmarks",
|
|
|
"proposals-codex/runtime-benchmarks",
|
|
|
- "pallet_constitution/runtime-benchmarks",
|
|
|
+ "pallet-constitution/runtime-benchmarks",
|
|
|
"working-group/runtime-benchmarks",
|
|
|
"forum/runtime-benchmarks",
|
|
|
"membership/runtime-benchmarks",
|
|
|
"council/runtime-benchmarks",
|
|
|
"referendum/runtime-benchmarks",
|
|
|
+ "bounty/runtime-benchmarks",
|
|
|
"hex-literal",
|
|
|
]
|
|
|
|