|
@@ -10,6 +10,7 @@ version = '7.1.0'
|
|
|
# Third-party dependencies
|
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
|
codec = { package = 'parity-scale-codec', version = '1.3.1', default-features = false, features = ['derive'] }
|
|
|
+hex-literal = { optional = true, version = '0.3.1' }
|
|
|
|
|
|
# Substrate primitives
|
|
|
sp-std = { package = 'sp-std', default-features = false, git = 'https://github.com/paritytech/substrate.git', rev = '00768a1f21a579c478fe5d4f51e1fa71f7db9fd4'}
|
|
@@ -69,6 +70,7 @@ hiring = { package = 'pallet-hiring', default-features = false, path = '../runti
|
|
|
minting = { package = 'pallet-token-mint', default-features = false, path = '../runtime-modules/token-minting'}
|
|
|
recurring-rewards = { package = 'pallet-recurring-reward', default-features = false, path = '../runtime-modules/recurring-reward'}
|
|
|
working-group = { package = 'pallet-working-group', default-features = false, path = '../runtime-modules/working-group'}
|
|
|
+working-team = { package = 'pallet-working-team', default-features = false, path = '../runtime-modules/working-team'}
|
|
|
content-working-group = { package = 'pallet-content-working-group', default-features = false, path = '../runtime-modules/content-working-group'}
|
|
|
versioned-store = { package = 'pallet-versioned-store', default-features = false, path = '../runtime-modules/versioned-store'}
|
|
|
versioned-store-permissions = { package = 'pallet-versioned-store-permissions', default-features = false, path = '../runtime-modules/versioned-store-permissions'}
|
|
@@ -144,6 +146,7 @@ std = [
|
|
|
'minting/std',
|
|
|
'recurring-rewards/std',
|
|
|
'working-group/std',
|
|
|
+ 'working-team/std',
|
|
|
'content-working-group/std',
|
|
|
'versioned-store/std',
|
|
|
'versioned-store-permissions/std',
|
|
@@ -155,17 +158,19 @@ std = [
|
|
|
]
|
|
|
runtime-benchmarks = [
|
|
|
"system/runtime-benchmarks",
|
|
|
- "frame-support/runtime-benchmarks",
|
|
|
- "sp-runtime/runtime-benchmarks",
|
|
|
- "pallet-balances/runtime-benchmarks",
|
|
|
- "pallet-collective/runtime-benchmarks",
|
|
|
- "pallet-im-online/runtime-benchmarks",
|
|
|
- "pallet-staking/runtime-benchmarks",
|
|
|
- "pallet-timestamp/runtime-benchmarks",
|
|
|
+ "frame-support/runtime-benchmarks",
|
|
|
+ "sp-runtime/runtime-benchmarks",
|
|
|
+ "pallet-balances/runtime-benchmarks",
|
|
|
+ "pallet-collective/runtime-benchmarks",
|
|
|
+ "pallet-im-online/runtime-benchmarks",
|
|
|
+ "pallet-staking/runtime-benchmarks",
|
|
|
+ "pallet-timestamp/runtime-benchmarks",
|
|
|
"frame-benchmarking",
|
|
|
"frame-system-benchmarking",
|
|
|
"pallet-offences-benchmarking",
|
|
|
- "pallet-session-benchmarking",
|
|
|
+ "pallet-session-benchmarking",
|
|
|
+ "working-team/runtime-benchmarks",
|
|
|
+ "hex-literal",
|
|
|
]
|
|
|
|
|
|
|