Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
34ca624
chore: bump deps
wischli Sep 6, 2022
7160779
wip: migrate pallets and runtimes
wischli Sep 6, 2022
be04423
chore: bump more versions
wischli Sep 6, 2022
a24e19a
wip: fix clients
wischli Sep 6, 2022
2f04b88
fix: runtime tomls
wischli Sep 7, 2022
a18bca5
style: ignore clippy in default weights
wischli Sep 7, 2022
9c48ae3
fix: client pt2
wischli Sep 7, 2022
89ba1e5
fix: runtimes, clippy
wischli Sep 7, 2022
6d6aad3
feat: switch pallet execution order
wischli Sep 7, 2022
a4cb4ed
tests: merge delegation from wf-2168-polkadot-v0.9.28
wischli Sep 7, 2022
1ab83db
Merge remote-tracking branch 'origin/develop' into wf-2020-polkadot-v…
wischli Sep 20, 2022
d542a18
chore: bump deps to polkadot-v0.9.29
wischli Sep 20, 2022
9df8e97
fix: weights 1.5 for new stuff
wischli Sep 21, 2022
36649f6
Merge branch 'develop' into wf-2020-polkadot-v0.9.29
wischli Sep 21, 2022
d45b845
fix: cp mistake
wischli Sep 21, 2022
f49dd24
fix: update weight templates
wischli Sep 22, 2022
134d428
fix: pallet order instruction
wischli Sep 22, 2022
b5e01bd
chore: bump deps
wischli Sep 23, 2022
68056c6
feat: add backported batch fix
wischli Oct 4, 2022
be7c214
Merge remote-tracking branch 'origin/master' into wf-2020-polkadot-v0…
wischli Oct 5, 2022
80bba47
Merge remote-tracking branch 'origin/develop' into wf-2020-polkadot-v…
wischli Oct 5, 2022
909317a
refactor: same serde versions
wischli Oct 5, 2022
6aa4b19
fix: UnitWeightCost type
wischli Oct 5, 2022
061b1ab
fix: CI regex for versions
wischli Oct 5, 2022
2560d7a
fix: remove disable-runtime-api feat
wischli Oct 6, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: bump more versions
  • Loading branch information
wischli committed Sep 6, 2022
commit be044234cce1a997263b4e7131af43483f0f8a7d
681 changes: 289 additions & 392 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions nodes/parachain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ codec = {package = "parity-scale-codec", version = "3.1.5"}
derive_more = "0.99.17"
futures = {version = "0.3.21", features = ["compat"]}
hex-literal = "0.3.4"
jsonrpsee = {version = "0.14.0", features = ["server"]}
jsonrpsee = {version = "0.15.1", features = ["server"]}
log = "0.4.17"
parking_lot = "0.12.1"
serde = {version = "1.0.142", features = ["derive"]}
serde = {version = "1.0.144", features = ["derive"]}
serde_json = "1.0.83"

# Substrate dependencies
Expand Down
4 changes: 2 additions & 2 deletions nodes/standalone/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runtime-common = {path = "../../runtimes/common"}
clap = {version = "3.2.20", features = ["derive"]}
futures = "0.3.21"
log = "0.4.17"
serde = {version = "1.0.142", features = ["derive"]}
serde = {version = "1.0.144", features = ["derive"]}
serde_json = "1.0.83"

# Substrate dependencies
Expand Down Expand Up @@ -58,7 +58,7 @@ sp-transaction-pool = {git = "https://github.com/paritytech/substrate", branch =

# RPC related dependencies
frame-rpc-system = {package = "substrate-frame-rpc-system", git = "https://github.com/paritytech/substrate", branch = "master"}
jsonrpsee = { version = "0.14.0", features = ["server"] }
jsonrpsee = { version = "0.15.1", features = ["server"] }
pallet-transaction-payment-rpc = {git = "https://github.com/paritytech/substrate", branch = "master"}
sc-rpc = {git = "https://github.com/paritytech/substrate", branch = "master"}
sc-rpc-api = {git = "https://github.com/paritytech/substrate", branch = "master"}
Expand Down
4 changes: 2 additions & 2 deletions pallets/attestation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ctype = {features = ["mock"], path = "../ctype"}
kilt-support = {features = ["mock"], path = "../../support"}

pallet-balances = {branch = "master", git = "https://github.com/paritytech/substrate"}
serde = "1.0.142"
serde = "1.0.144"
sp-core = {branch = "master", git = "https://github.com/paritytech/substrate"}
sp-io = {branch = "master", git = "https://github.com/paritytech/substrate"}
sp-keystore = {branch = "master", git = "https://github.com/paritytech/substrate"}
Expand All @@ -26,7 +26,7 @@ sp-keystore = {branch = "master", git = "https://github.com/paritytech/substrate
codec = {package = "parity-scale-codec", version = "3.1.5", default-features = false, features = ["derive"]}
log = "0.4.17"
scale-info = {version = "2.1.1", default-features = false, features = ["derive"]}
serde = {version = "1.0.142", optional = true}
serde = {version = "1.0.144", optional = true}

# Internal dependencies
ctype = {default-features = false, path = "../ctype"}
Expand Down
4 changes: 2 additions & 2 deletions pallets/ctype/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ substrate-wasm-builder = {git = "https://github.com/paritytech/substrate", branc
[dev-dependencies]
kilt-support = {features = ["mock"], path = "../../support"}
pallet-balances = {branch = "master", git = "https://github.com/paritytech/substrate"}
serde = "1.0.142"
serde = "1.0.144"
sp-core = {branch = "master", git = "https://github.com/paritytech/substrate"}
sp-keystore = {branch = "master", git = "https://github.com/paritytech/substrate"}

[dependencies]
codec = {package = "parity-scale-codec", version = "3.1.5", default-features = false, features = ["derive"]}
log = "0.4.17"
scale-info = {version = "2.1.1", default-features = false, features = ["derive"]}
serde = {version = "1.0.142", optional = true}
serde = {version = "1.0.144", optional = true}

# Internal dependencies
kilt-support = {default-features = false, path = "../../support"}
Expand Down
4 changes: 2 additions & 2 deletions pallets/delegation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kilt-support = {features = ["mock"], path = "../../support"}

# External dependencies
env_logger = "0.9.0"
serde = "1.0.142"
serde = "1.0.144"

# Substrate dependencies
pallet-balances = {branch = "master", git = "https://github.com/paritytech/substrate"}
Expand All @@ -37,7 +37,7 @@ bitflags = {default-features = false, version = "1.3.2"}
codec = {package = "parity-scale-codec", version = "3.1.5", default-features = false, features = ["derive"]}
log = "0.4.17"
scale-info = {version = "2.1.1", default-features = false, features = ["derive"]}
serde = {version = "1.0.142", optional = true}
serde = {version = "1.0.144", optional = true}

# Substrate dependencies
frame-benchmarking = {branch = "master", default-features = false, git = "https://github.com/paritytech/substrate", optional = true}
Expand Down
2 changes: 1 addition & 1 deletion pallets/did/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ substrate-wasm-builder = {git = "https://github.com/paritytech/substrate", branc

[dev-dependencies]
env_logger = "0.9.0"
serde = "1.0.142"
serde = "1.0.144"

ctype = {features = ["mock"], path = "../ctype"}

Expand Down
4 changes: 2 additions & 2 deletions pallets/pallet-inflation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ version = "1.7.2"
targets = ["x86_64-unknown-linux-gnu"]

[dev-dependencies]
serde = "1.0.142"
serde = "1.0.144"

pallet-balances = {branch = "master", git = "https://github.com/paritytech/substrate"}
sp-core = {branch = "master", git = "https://github.com/paritytech/substrate"}
Expand All @@ -19,7 +19,7 @@ sp-io = {branch = "master", git = "https://github.com/paritytech/substrate"}
[dependencies]
codec = {package = "parity-scale-codec", version = "3.1.5", default-features = false, features = ["derive"]}
scale-info = {version = "2.1.1", default-features = false, features = ["derive"]}
serde = {version = "1.0.142", optional = true}
serde = {version = "1.0.144", optional = true}

# benchmarking
frame-benchmarking = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true}
Expand Down
2 changes: 1 addition & 1 deletion pallets/parachain-staking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sp-io = {git = "https://github.com/paritytech/substrate", branch = "master"}
log = "0.4.17"
parity-scale-codec = {version = "3.1.5", default-features = false, features = ["derive"]}
scale-info = {version = "2.1.1", default-features = false, features = ["derive"]}
serde = {version = "1.0.142", optional = true}
serde = {version = "1.0.144", optional = true}

frame-support = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false}
frame-system = {git = "https://github.com/paritytech/substrate", branch = "master", default-features = false}
Expand Down
2 changes: 1 addition & 1 deletion rpc/did/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version = "1.6.2"

[dependencies]
codec = { package = "parity-scale-codec", version = "3.1.5" }
jsonrpsee = { version = "0.14.0", features = ["server", "macros"] }
jsonrpsee = { version = "0.15.1", features = ["server", "macros"] }

did-rpc-runtime-api = {version = "1.6.2", path = "./runtime-api"}

Expand Down
2 changes: 1 addition & 1 deletion runtimes/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ sp-io = {git = "https://github.com/paritytech/substrate", branch = "master"}
codec = {package = "parity-scale-codec", version = "3.1.5", default-features = false, features = ["derive"]}
log = "0.4.17"
scale-info = {version = "2.1.1", default-features = false, features = ["derive"]}
serde = {version = "1.0.142", optional = true, features = ["derive"]}
serde = {version = "1.0.144", optional = true, features = ["derive"]}
smallvec = "1.8.0"

attestation = {default-features = false, path = "../../pallets/attestation"}
Expand Down
2 changes: 1 addition & 1 deletion runtimes/peregrine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ smallvec = "1.8.0"
static_assertions = "1.1.0"

hex-literal = {version = "0.3.4", optional = true}
serde = {version = "1.0.142", optional = true, features = ["derive"]}
serde = {version = "1.0.144", optional = true, features = ["derive"]}

# RPC
did-rpc-runtime-api = {path = "../../rpc/did/runtime-api", default-features = false}
Expand Down
2 changes: 1 addition & 1 deletion runtimes/spiritnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ smallvec = "1.8.0"
static_assertions = "1.1.0"

hex-literal = {version = "0.3.4", optional = true}
serde = {version = "1.0.142", optional = true, features = ["derive"]}
serde = {version = "1.0.144", optional = true, features = ["derive"]}

# RPC
did-rpc-runtime-api = {path = "../../rpc/did/runtime-api", default-features = false}
Expand Down
2 changes: 1 addition & 1 deletion runtimes/standalone/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ log = "0.4.17"
scale-info = {version = "2.1.1", default-features = false, features = ["derive"]}

hex-literal = {version = "0.3.4", optional = true}
serde = {version = "1.0.142", optional = true, features = ["derive"]}
serde = {version = "1.0.144", optional = true, features = ["derive"]}

# kilt functionality
attestation = {default-features = false, path = "../../pallets/attestation"}
Expand Down