-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to polkadot-sdk v1.12.0 (#409)
* change(cargo): initiate updating dependencies * change(cargo): format files / update dependencies / patch broken dependencies * change(pallet-communities): explicitly define ItemConfig * change(pallet-communities-manager): use pallet-communities' ItemConfig for managing memberships * change(cargo): apply frame-contrib#14 * change(runtime-common): update definitions to XCMv4 * change(kusama-runtime-constants): update definitions to XCMv4 * wip(virto-common): use XCMv3 as the version for structuring locations over `MultiLocationAssetId`s * change(pallets): update pallets to use new features present in PSDK v1.12 * change(pallets): prune unused pallets * change(cargo): remove crate patch / update dependencies * wip(kreivo-runtime): adjust parameters for runtime * change(kreivo-runtime): adjust xcm to use latest * change: update deps / lint * fix: lint * fix(kreivo-runtime): output WASM in builds * change(node): adjustments in cli settings * change(kreivo-runtime): update version * change(justfile): adjust to new TOML format * change(virto-node): update to latest template * change(kreivo-runtime): include missing impls for aura * fix(kreivo-runtime): missing feature propagation / invalid visiblity for RuntimeApi * fix(virto-node): misaligned version for json_rpsee dependency * fix(virto-node): format * change(zombienet): adjust configs * fix(kreivo-runtime): use specific CreateOrigin for runtime benchmarks * fix: lint * [ci] calculate weights (#414) Co-authored-by: pandres95 <2502577+pandres95@users.noreply.github.com> * change: version bump --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f9718c2
commit 3d0bcdd
Showing
69 changed files
with
4,224 additions
and
5,927 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,47 @@ | ||
[package] | ||
name = "virto-common" | ||
version = "0.1.0" | ||
edition = "2021" | ||
name = "virto-common" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
bs58 = { version = "0.5.0", default-features = false } | ||
wasm-bindgen = { version = "0.2.87", optional = true } | ||
bs58 = { version = "0.5.0", default-features = false } | ||
wasm-bindgen = { version = "0.2.87", optional = true } | ||
|
||
cumulus-primitives-core = { workspace = true, optional = true } | ||
frame-support = { workspace = true, optional = true } | ||
pallet-payments = { workspace = true, optional = true } | ||
parity-scale-codec = { workspace = true, optional = true } | ||
scale-info = { workspace = true, optional = true } | ||
serde = { workspace = true, optional = true, default-features = false } | ||
sp-runtime = { workspace = true, optional = true } | ||
xcm = { workspace = true, optional = true } | ||
cumulus-primitives-core = { workspace = true, optional = true } | ||
frame-support = { workspace = true, optional = true } | ||
pallet-payments = { workspace = true, optional = true } | ||
parity-scale-codec = { workspace = true, optional = true } | ||
scale-info = { workspace = true, optional = true } | ||
serde = { workspace = true, optional = true, default-features = false } | ||
sp-runtime = { workspace = true, optional = true } | ||
xcm = { workspace = true, optional = true } | ||
|
||
[dev-dependencies] | ||
frame-support = { workspace = true, features = ["std"] } | ||
frame-support = { workspace = true, features = ["std"] } | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"bs58/std", | ||
"cumulus-primitives-core?/std", | ||
"frame-support?/std", | ||
"pallet-payments?/std", | ||
"parity-scale-codec?/std", | ||
"scale-info?/std", | ||
"serde?/std", | ||
"sp-runtime?/std", | ||
"xcm?/std", | ||
] | ||
alloc = [] | ||
js = ["alloc", "wasm-bindgen"] | ||
nightly = [] | ||
runtime = [ | ||
"dep:cumulus-primitives-core", | ||
"dep:frame-support", | ||
"dep:pallet-payments", | ||
"dep:parity-scale-codec", | ||
"dep:serde", | ||
"dep:scale-info", | ||
"dep:sp-runtime", | ||
"dep:xcm", | ||
] | ||
default = ["std"] | ||
std = [ | ||
"bs58/std", | ||
"cumulus-primitives-core?/std", | ||
"frame-support?/std", | ||
"pallet-payments?/std", | ||
"parity-scale-codec?/std", | ||
"scale-info?/std", | ||
"serde?/std", | ||
"sp-runtime?/std", | ||
"xcm?/std", | ||
] | ||
alloc = [] | ||
js = ["alloc", "wasm-bindgen"] | ||
nightly = [] | ||
runtime = [ | ||
"dep:cumulus-primitives-core", | ||
"dep:frame-support", | ||
"dep:pallet-payments", | ||
"dep:parity-scale-codec", | ||
"dep:serde", | ||
"dep:scale-info", | ||
"dep:sp-runtime", | ||
"dep:xcm", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.