|
@@ -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 = '7.2.0'
|
|
|
+version = '7.3.0'
|
|
|
|
|
|
[dependencies]
|
|
|
# Third-party dependencies
|
|
@@ -51,6 +51,7 @@ pallet-timestamp = { package = 'pallet-timestamp', default-features = false, git
|
|
|
pallet-balances = { package = 'pallet-balances', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
pallet-im-online = { package = 'pallet-im-online', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
pallet-collective = { package = 'pallet-collective', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
+pallet-utility = { package = 'pallet-utility', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
|
|
|
|
# Benchmarking
|
|
|
frame-benchmarking = { git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4', default-features = false, optional = true }
|
|
@@ -132,6 +133,7 @@ std = [
|
|
|
'pallet-im-online/std',
|
|
|
'pallet-collective/std',
|
|
|
'pallet-offences/std',
|
|
|
+ 'pallet-utility/std',
|
|
|
|
|
|
# Joystream
|
|
|
'common/std',
|
|
@@ -166,6 +168,7 @@ runtime-benchmarks = [
|
|
|
"frame-system-benchmarking",
|
|
|
"pallet-offences-benchmarking",
|
|
|
"pallet-session-benchmarking",
|
|
|
+ "pallet-utility/runtime-benchmarks",
|
|
|
]
|
|
|
|
|
|
|