Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
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