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
6 files
+ 28
14
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 9
4
@@ -19,16 +19,16 @@ name = 'duniter'
path = "src/main.rs"
[features]
default = [ "distance-oracle", "gdev" ]
gdev = [ "gdev-runtime" ]
g1 = [ "g1-runtime" ]
default = ["distance-oracle", "gdev"]
gdev = ["gdev-runtime", "std"]
g1 = ["g1-runtime", "std"]
constant-fees = [
"common-runtime/constant-fees",
"g1-runtime/constant-fees",
"gdev-runtime/constant-fees",
"gtest-runtime/constant-fees",
]
gtest = [ "gtest-runtime" ]
gtest = ["gtest-runtime", "std"]
embed = []
runtime-benchmarks = [
'common-runtime/runtime-benchmarks',
@@ -51,6 +51,10 @@ std = [
"g1-runtime/std",
"gdev-runtime/std",
"gtest-runtime/std",
"sp-distance/std",
"sp-membership/std",
"dc-distance/std",
"distance-oracle?/std"
]
[dependencies]
@@ -108,6 +112,7 @@ sp-consensus-babe = { workspace = true }
sp-consensus-grandpa = { workspace = true }
sp-core = { workspace = true }
sp-distance = { workspace = true }
sp-inherents = { workspace = true }
sp-io = { workspace = true }
sp-keyring = { workspace = true }
sp-keystore = { workspace = true }
Loading