Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ca4579b
Merge pull request #1 from paritytech/master
jkcomment Jan 28, 2019
0dabc29
Merge pull request #2 from paritytech/master
jkcomment Feb 4, 2019
170896a
Merge pull request #3 from paritytech/master
jkcomment Feb 6, 2019
02ee64b
Merge pull request #4 from paritytech/master
jkcomment Feb 25, 2019
28f5c4f
Merge pull request #5 from paritytech/master
jkcomment Mar 26, 2019
19e0f1d
Merge pull request #6 from paritytech/master
jkcomment Apr 20, 2019
f2d1f0a
Merge pull request #7 from paritytech/master
jkcomment May 7, 2019
64c93c8
Merge pull request #8 from paritytech/master
jkcomment Jul 9, 2019
3f285ad
Merge pull request #9 from paritytech/master
jkcomment Oct 4, 2019
50932ef
Merge pull request #10 from paritytech/master
jkcomment Jan 13, 2020
c563da2
Merge pull request #11 from paritytech/master
jkcomment Jan 17, 2020
17c9376
Merge pull request #12 from paritytech/master
jkcomment Mar 7, 2020
0c86eea
Merge pull request #13 from paritytech/master
jkcomment Apr 20, 2020
e504a72
Merge pull request #14 from paritytech/master
jkcomment May 21, 2020
826c6ea
Merge pull request #15 from paritytech/master
jkcomment Feb 8, 2021
c0b8c99
Merge pull request #26 from paritytech/master
jkcomment Apr 22, 2021
8ebb56f
Bump unsigned-varint from 0.6.0 to 0.7.0
dependabot[bot] Apr 22, 2021
a8fe9ee
Bump hyper from 0.12.36 to 0.13.10
dependabot[bot] Apr 22, 2021
b1427da
Bump wasm-bindgen-test from 0.3.20 to 0.3.23
dependabot[bot] Apr 23, 2021
83e5c40
Bump handlebars from 3.5.3 to 4.1.0
dependabot[bot] Jul 5, 2021
653ace7
Merge branch 'paritytech:master' into master
jkcomment Jul 7, 2021
3c77b4e
Merge pull request #18 from jkcomment/dependabot/cargo/unsigned-varin…
jkcomment Jul 7, 2021
309300e
Merge pull request #27 from jkcomment/dependabot/cargo/hyper-0.13.10
jkcomment Jul 7, 2021
4cb5797
Merge pull request #29 from jkcomment/dependabot/cargo/wasm-bindgen-t…
jkcomment Jul 7, 2021
b9eb32f
Merge pull request #35 from jkcomment/dependabot/cargo/handlebars-4.1.0
jkcomment Jul 7, 2021
6ccdf39
Bump tracing-subscriber from 0.2.18 to 0.2.20
dependabot[bot] Aug 18, 2021
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
36 changes: 12 additions & 24 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/browser-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ serde = "1.0.106"
serde_json = "1.0.48"
wasm-bindgen = { version = "=0.2.73", features = ["serde-serialize"] }
wasm-bindgen-futures = "0.4.18"
wasm-bindgen-test = "0.3.18"
wasm-bindgen-test = "0.3.23"
futures = "0.3.9"

node-cli = { path = "../cli", default-features = false, features = ["browser"], version = "2.0.0"}
Expand Down
2 changes: 1 addition & 1 deletion bin/node/rpc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
futures = "0.1.29"
hyper = "~0.12.35"
hyper = "~0.13.10"
jsonrpc-core-client = { version = "15.1.0", default-features = false, features = ["http"] }
log = "0.4.8"
node-primitives = { version = "2.0.0", path = "../primitives" }
Expand Down
2 changes: 1 addition & 1 deletion client/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
sp-maybe-compressed-blob = { version = "3.0.0", path = "../../primitives/maybe-compressed-blob" }
sc-tracing = { version = "3.0.0", path = "../tracing" }
tracing = "0.1.25"
tracing-subscriber = "0.2.18"
tracing-subscriber = "0.2.20"
paste = "1.0"
regex = "1"

Expand Down
2 changes: 1 addition & 1 deletion client/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ sp-core = { version = "3.0.0", path = "../../primitives/core" }
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
thiserror = "1"
unsigned-varint = { version = "0.6.0", features = ["futures", "asynchronous_codec"] }
unsigned-varint = { version = "0.7.0", features = ["futures", "asynchronous_codec"] }
void = "1.0.2"
wasm-timer = "0.2"
zeroize = "1.2.0"
Expand Down
2 changes: 1 addition & 1 deletion client/offchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
threadpool = "1.7"

[target.'cfg(not(target_os = "unknown"))'.dependencies]
hyper = "0.13.9"
hyper = "0.13.10"
hyper-rustls = "0.21.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion client/tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ serde_json = "1.0.41"
thiserror = "1.0.21"
tracing = "0.1.25"
tracing-log = "0.1.2"
tracing-subscriber = "0.2.18"
tracing-subscriber = "0.2.20"
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
sp-rpc = { version = "3.0.0", path = "../../primitives/rpc" }
sp-block-builder = { version = "3.0.0", path = "../../primitives/block-builder" }
Expand Down
2 changes: 1 addition & 1 deletion primitives/tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ codec = { version = "2.0.0", package = "parity-scale-codec", default-features =
tracing = { version = "0.1.25", default-features = false }
tracing-core = { version = "0.1.17", default-features = false }
log = { version = "0.4.8", optional = true }
tracing-subscriber = { version = "0.2.18", optional = true, features = ["tracing-log"] }
tracing-subscriber = { version = "0.2.20", optional = true, features = ["tracing-log"] }
parking_lot = { version = "0.10.0", optional = true }
erased-serde = { version = "0.3.9", optional = true }
serde = { version = "1.0.101", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion utils/frame/benchmarking-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ codec = { version = "2.0.0", package = "parity-scale-codec" }
structopt = "0.3.8"
chrono = "0.4"
serde = "1.0.116"
handlebars = "3.5.0"
handlebars = "4.1.0"
Inflector = "0.11.4"

[features]
Expand Down
2 changes: 1 addition & 1 deletion utils/prometheus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ derive_more = "0.99"

[target.'cfg(not(target_os = "unknown"))'.dependencies]
async-std = { version = "1.6.5", features = ["unstable"] }
hyper = { version = "0.13.9", default-features = false, features = ["stream"] }
hyper = { version = "0.13.10", default-features = false, features = ["stream"] }
tokio = "0.2"