Skip to content
Snippets Groups Projects

Upgrade Polkadot-v1.6.0

Merged Benjamin Gallois requested to merge upgrade_polkadot_v1.6.0_2 into master
Compare and Show latest version
33 files
+ 331
132
Compare changes
  • Side-by-side
  • Inline
Files
33
+ 22
3
@@ -12,9 +12,28 @@ repository.workspace = true
targets = ['x86_64-unknown-linux-gnu']
[features]
std = [ "pallet-distance/std", "sp-distance/std" ]
runtime-benchmarks = [ 'pallet-distance/runtime-benchmarks' ]
try-runtime = [ 'pallet-distance/try-runtime', 'sp-distance/try-runtime' ]
std = [
"pallet-distance/std",
"sp-distance/std",
"frame-support/std",
"log/std",
"codec/std",
"scale-info/std",
"sp-core/std",
"sp-keystore/std",
"sp-runtime/std"
]
runtime-benchmarks = [
'pallet-distance/runtime-benchmarks',
"frame-support/runtime-benchmarks",
"sp-runtime/runtime-benchmarks"
]
try-runtime = [
'pallet-distance/try-runtime',
'sp-distance/try-runtime',
"frame-support/try-runtime",
"sp-runtime/try-runtime"
]
[dependencies]
codec = { workspace = true, features = ['derive'] }
Loading