Skip to content

Bump serde from 1.0.124 to 1.0.147 #58

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
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
26 changes: 16 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/node/bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ sc-cli = { version = "0.9.0", path = "../../../client/cli" }
sc-client-api = { version = "3.0.0", path = "../../../client/api/" }
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" }
serde = "1.0.101"
serde = "1.0.147"
serde_json = "1.0.41"
structopt = "0.3"
derive_more = "0.99.2"
2 changes: 1 addition & 1 deletion bin/node/browser-testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ license = "Apache-2.0"
futures-timer = "3.0.2"
libp2p = { version = "0.34.0", default-features = false }
jsonrpc-core = "15.0.0"
serde = "1.0.106"
serde = "1.0.147"
serde_json = "1.0.48"
wasm-bindgen = { version = "=0.2.69", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.18"
2 changes: 1 addition & 1 deletion bin/node/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ crate-type = ["cdylib", "rlib"]
[dependencies]
# third-party dependencies
codec = { package = "parity-scale-codec", version = "2.0.0" }
serde = { version = "1.0.102", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
futures = { version = "0.3.9", features = ["compat"] }
hex-literal = "0.3.1"
log = "0.4.8"
2 changes: 1 addition & 1 deletion bin/node/runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]

# third-party dependencies
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.102", optional = true }
serde = { version = "1.0.147", optional = true }
static_assertions = "1.1.0"
hex-literal = { version = "0.3.1", optional = true }

2 changes: 1 addition & 1 deletion client/chain-spec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ sc-chain-spec-derive = { version = "3.0.0", path = "./derive" }
impl-trait-for-tuples = "0.2.1"
sc-network = { version = "0.9.0", path = "../network" }
sp-core = { version = "3.0.0", path = "../../primitives/core" }
serde = { version = "1.0.101", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.41"
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
sp-chain-spec = { version = "3.0.0", path = "../../primitives/chain-spec" }
2 changes: 1 addition & 1 deletion client/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ names = "0.11.0"
structopt = "0.3.8"
sc-tracing = { version = "3.0.0", path = "../tracing" }
chrono = "0.4.10"
serde = "1.0.111"
serde = "1.0.147"
thiserror = "1.0.21"

[target.'cfg(not(target_os = "unknown"))'.dependencies]
2 changes: 1 addition & 1 deletion client/consensus/babe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
num-bigint = "0.2.3"
num-rational = "0.2.2"
num-traits = "0.2.8"
serde = { version = "1.0.104", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
sp-version = { version = "3.0.0", path = "../../../primitives/version" }
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
2 changes: 1 addition & 1 deletion client/consensus/babe/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jsonrpc-core = "15.1.0"
jsonrpc-core-client = "15.1.0"
jsonrpc-derive = "15.1.0"
sp-consensus-babe = { version = "0.9.0", path = "../../../../primitives/consensus/babe" }
serde = { version = "1.0.104", features=["derive"] }
serde = { version = "1.0.147", features=["derive"] }
sp-blockchain = { version = "3.0.0", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "3.0.0", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.9.0", path = "../../epochs" }
2 changes: 1 addition & 1 deletion client/network/Cargo.toml
Original file line number Diff line number Diff line change
@@ -47,7 +47,7 @@ rand = "0.7.2"
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
sc-client-api = { version = "3.0.0", path = "../api" }
sc-peerset = { version = "3.0.0", path = "../peerset" }
serde = { version = "1.0.101", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.41"
smallvec = "1.5.0"
sp-arithmetic = { version = "3.0.0", path = "../../primitives/arithmetic" }
2 changes: 1 addition & 1 deletion client/rpc-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ sp-core = { version = "3.0.0", path = "../../primitives/core" }
sp-version = { version = "3.0.0", path = "../../primitives/version" }
sp-runtime = { path = "../../primitives/runtime" , version = "3.0.0"}
sp-chain-spec = { path = "../../primitives/chain-spec" , version = "3.0.0"}
serde = { version = "1.0.101", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.41"
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
sp-rpc = { version = "3.0.0", path = "../../primitives/rpc" }
2 changes: 1 addition & 1 deletion client/rpc-servers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jsonrpc-core = "15.1.0"
pubsub = { package = "jsonrpc-pubsub", version = "15.1.0" }
log = "0.4.8"
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
serde = "1.0.101"
serde = "1.0.147"
serde_json = "1.0.41"
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }

2 changes: 1 addition & 1 deletion client/service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -38,7 +38,7 @@ wasm-timer = "0.2"
exit-future = "0.2.0"
pin-project = "1.0.4"
hash-db = "0.15.2"
serde = "1.0.101"
serde = "1.0.147"
serde_json = "1.0.41"
sc-keystore = { version = "3.0.0", path = "../keystore" }
sp-io = { version = "3.0.0", path = "../../primitives/io" }
2 changes: 1 addition & 1 deletion client/telemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ libp2p = { version = "0.34.0", default-features = false, features = ["dns", "tcp
log = "0.4.8"
pin-project = "1.0.4"
rand = "0.7.2"
serde = { version = "1.0.101", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
take_mut = "0.2.2"
void = "1.0.2"
tracing = "0.1.10"
2 changes: 1 addition & 1 deletion client/tracing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ once_cell = "1.4.1"
parking_lot = "0.11.1"
regex = "1.4.2"
rustc-hash = "1.1.0"
serde = "1.0.101"
serde = "1.0.147"
serde_json = "1.0.41"
thiserror = "1.0.21"
tracing = "0.1.22"
2 changes: 1 addition & 1 deletion client/transaction-pool/graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ thiserror = "1.0.21"
futures = "0.3.9"
log = "0.4.8"
parking_lot = "0.11.1"
serde = { version = "1.0.101", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
wasm-timer = "0.2"
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
sp-utils = { version = "3.0.0", path = "../../../primitives/utils" }
2 changes: 1 addition & 1 deletion frame/assets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
# Needed for various traits. In our case, `OnFinalize`.
2 changes: 1 addition & 1 deletion frame/atomic-swap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
2 changes: 1 addition & 1 deletion frame/aura/Cargo.toml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
pallet-session = { version = "3.0.0", default-features = false, path = "../session" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
2 changes: 1 addition & 1 deletion frame/authority-discovery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ sp-authority-discovery = { version = "3.0.0", default-features = false, path = "
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
pallet-session = { version = "3.0.0", features = ["historical" ], path = "../session", default-features = false }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
2 changes: 1 addition & 1 deletion frame/authorship/Cargo.toml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ impl-trait-for-tuples = "0.2.1"
[dev-dependencies]
sp-core = { version = "3.0.0", path = "../../primitives/core" }
sp-io ={ version = "3.0.0", path = "../../primitives/io" }
serde = { version = "1.0.101" }
serde = { version = "1.0.147" }

[features]
default = ["std"]
2 changes: 1 addition & 1 deletion frame/babe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ frame-system = { version = "3.0.0", default-features = false, path = "../system"
pallet-authorship = { version = "3.0.0", default-features = false, path = "../authorship" }
pallet-session = { version = "3.0.0", default-features = false, path = "../session" }
pallet-timestamp = { version = "3.0.0", default-features = false, path = "../timestamp" }
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" }
sp-consensus-babe = { version = "0.9.0", default-features = false, path = "../../primitives/consensus/babe" }
sp-consensus-vrf = { version = "0.9.0", default-features = false, path = "../../primitives/consensus/vrf" }
2 changes: 1 addition & 1 deletion frame/balances/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
2 changes: 1 addition & 1 deletion frame/benchmarking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ frame-system = { version = "3.0.0", default-features = false, path = "../system"

[dev-dependencies]
hex-literal = "0.3.1"
serde = "1.0.101"
serde = "1.0.147"

[features]
default = [ "std" ]
2 changes: 1 addition & 1 deletion frame/bounties/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
serde = { version = "1.0.147", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
2 changes: 1 addition & 1 deletion frame/collective/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
2 changes: 1 addition & 1 deletion frame/contracts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ pallet-contracts-primitives = { version = "2.0.0", default-features = false, pat
pallet-contracts-proc-macro = { version = "0.1.0", path = "proc-macro" }
parity-wasm = { version = "0.41.0", default-features = false }
pwasm-utils = { version = "0.16", default-features = false }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
serde = { version = "1.0.147", optional = true, features = ["derive"] }
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
2 changes: 1 addition & 1 deletion frame/contracts/rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jsonrpc-derive = "15.1.0"
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
sp-rpc = { version = "3.0.0", path = "../../../primitives/rpc" }
serde = { version = "1.0.101", features = ["derive"] }
serde = { version = "1.0.147", features = ["derive"] }
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
pallet-contracts-primitives = { version = "2.0.0", path = "../common" }
2 changes: 1 addition & 1 deletion frame/democracy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
serde = { version = "1.0.147", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
2 changes: 1 addition & 1 deletion frame/elections/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
2 changes: 1 addition & 1 deletion frame/example-offchain-worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
sp-keystore = { version = "0.9.0", path = "../../primitives/keystore", optional = true }
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
2 changes: 1 addition & 1 deletion frame/example-parallel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@ sp-std = { version = "3.0.0", default-features = false, path = "../../primitives
sp-tasks = { version = "3.0.0", default-features = false, path = "../../primitives/tasks" }

[dev-dependencies]
serde = { version = "1.0.101" }
serde = { version = "1.0.147" }

[features]
default = ["std"]
2 changes: 1 addition & 1 deletion frame/example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
2 changes: 1 addition & 1 deletion frame/executive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "3.0.0", default-features = false, path = "../../primitives/tracing" }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
2 changes: 1 addition & 1 deletion frame/grandpa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
serde = { version = "1.0.147", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" }
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
2 changes: 1 addition & 1 deletion frame/identity/Cargo.toml
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
enumflags2 = { version = "0.6.2" }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
2 changes: 1 addition & 1 deletion frame/im-online/Cargo.toml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ pallet-authorship = { version = "3.0.0", default-features = false, path = "../au
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
serde = { version = "1.0.147", optional = true }
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" }
Loading