Skip to content
This repository was archived by the owner on May 22, 2023. It is now read-only.

Commit 580ebae

Browse files
Bump log from 0.4.14 to 0.4.16 (paritytech#11236)
Bumps [log](https://github.com/rust-lang/log) from 0.4.14 to 0.4.16. - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/commits) --- updated-dependencies: - dependency-name: log dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 977ce49 commit 580ebae

File tree

86 files changed

+263
-262
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+263
-262
lines changed

Cargo.lock

Lines changed: 178 additions & 177 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bin/node/bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
1010

1111
[dependencies]
1212
clap = { version = "3.1.6", features = ["derive"] }
13-
log = "0.4.8"
13+
log = "0.4.16"
1414
node-primitives = { version = "2.0.0", path = "../primitives" }
1515
node-testing = { version = "3.0.0-dev", path = "../testing" }
1616
node-runtime = { version = "3.0.0-dev", path = "../runtime" }

bin/node/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0" }
3939
serde = { version = "1.0.136", features = ["derive"] }
4040
futures = "0.3.21"
4141
hex-literal = "0.3.4"
42-
log = "0.4.8"
42+
log = "0.4.16"
4343
rand = "0.8"
4444

4545
# primitives

bin/node/runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
2121
scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }
2222
static_assertions = "1.1.0"
2323
hex-literal = { version = "0.3.4", optional = true }
24-
log = { version = "0.4.14", default-features = false }
24+
log = { version = "0.4.16", default-features = false }
2525

2626
# primitives
2727
sp-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/authority-discovery" }

bin/node/testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ sp-block-builder = { version = "4.0.0-dev", path = "../../../primitives/block-bu
4545
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
4646
sp-inherents = { version = "4.0.0-dev", path = "../../../primitives/inherents" }
4747
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
48-
log = "0.4.8"
48+
log = "0.4.16"
4949
tempfile = "3.1.0"
5050
fs_extra = "1"
5151
futures = "0.3.21"

client/allocator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ targets = ["x86_64-unknown-linux-gnu"]
1616
[dependencies]
1717
sp-core = { version = "6.0.0", path = "../../primitives/core" }
1818
sp-wasm-interface = { version = "6.0.0", path = "../../primitives/wasm-interface" }
19-
log = "0.4.11"
19+
log = "0.4.16"
2020
thiserror = "1.0.30"

client/api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fnv = "1.0.6"
2424
futures = "0.3.21"
2525
hash-db = { version = "0.15.2", default-features = false }
2626
sp-blockchain = { version = "4.0.0-dev", path = "../../primitives/blockchain" }
27-
log = "0.4.8"
27+
log = "0.4.16"
2828
parking_lot = "0.12.0"
2929
sp-database = { version = "4.0.0-dev", path = "../../primitives/database" }
3030
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }

client/authority-discovery/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ futures = "0.3.21"
2424
futures-timer = "3.0.1"
2525
ip_network = "0.4.1"
2626
libp2p = { version = "0.40.0", default-features = false, features = ["kad"] }
27-
log = "0.4.8"
27+
log = "0.4.16"
2828
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.10.0-dev" }
2929
prost = "0.9"
3030
rand = "0.7.2"

client/basic-authorship/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
1616
codec = { package = "parity-scale-codec", version = "3.0.0" }
1717
futures = "0.3.21"
1818
futures-timer = "3.0.1"
19-
log = "0.4.8"
19+
log = "0.4.16"
2020
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.10.0-dev"}
2121
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
2222
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" }

client/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fdlimit = "0.2.1"
1919
futures = "0.3.21"
2020
hex = "0.4.2"
2121
libp2p = "0.40.0"
22-
log = "0.4.11"
22+
log = "0.4.16"
2323
names = { version = "0.13.0", default-features = false }
2424
rand = "0.7.3"
2525
regex = "1.5.5"

0 commit comments

Comments
 (0)