Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
11ace4e
make ClientConfig public (#7544)
insipx Nov 16, 2020
407cd3a
sc-basic-authorship: remove useless dependencies (#7550)
koushiro Nov 18, 2020
2d97a12
Add slashing events to elections-phragmen. (#7543)
kianenigma Nov 18, 2020
c180950
Remove necessity to pass ConsensusEngineId when registering notificat…
tomaka Nov 18, 2020
9d65d98
sc-cli: replace bip39 with tiny-bip39 (#7551)
koushiro Nov 18, 2020
69198d1
Add extra docs to on_initialize (#7552)
tomusdrw Nov 18, 2020
f74de63
More Extensible Multiaddress Format (#7380)
shawntabrizi Nov 19, 2020
1c122c6
Fix weight template to remove ugliness in rust doc (#7565)
athei Nov 20, 2020
a0e8b7e
Cargo.lock: Run cargo update (#7553)
mxinden Nov 20, 2020
5f17393
.github: Add dependabot config and thus enable dependabot (#7509)
mxinden Nov 20, 2020
faad534
Thread-local parameter_types for testing. (#7542)
kianenigma Nov 20, 2020
a208da1
Bump wasm-bindgen-test from 0.3.12 to 0.3.17 (#7567)
dependabot[bot] Nov 20, 2020
23473ca
pallet-evm: move to Frontier (Part IV) (#7573)
sorpaas Nov 22, 2020
24eec92
Bump secrecy from 0.6.0 to 0.7.0 (#7568)
dependabot[bot] Nov 22, 2020
756212f
Bump wasm-bindgen-futures from 0.4.17 to 0.4.18 (#7572)
dependabot[bot] Nov 22, 2020
6c83f39
Bump lru from 0.4.3 to 0.6.1 (#7577)
dependabot[bot] Nov 23, 2020
40e08ee
Bump wasm-bindgen-test from 0.3.17 to 0.3.18 (#7579)
dependabot[bot] Nov 23, 2020
0fcbef2
Bump wasm-timer from 0.2.4 to 0.2.5 (#7578)
dependabot[bot] Nov 23, 2020
f16acff
grandpa: remove light-client specific block import pipeline (#7546)
andresilva Nov 23, 2020
0840c58
client/authority-discovery: Publish and query on exponential interval…
mxinden Nov 23, 2020
d021078
sc-network: update some dependencies (#7582)
koushiro Nov 23, 2020
3558103
Bump linregress and do some other cleanups (#7580)
bkchr Nov 23, 2020
7e94f01
Wasm-builder 3.0 (#7532)
bkchr Nov 24, 2020
31733d5
Bump tracing from 0.1.21 to 0.1.22 (#7589)
dependabot[bot] Nov 24, 2020
9a29852
contracts: Add `salt` argument to contract instantiation (#7482)
athei Nov 24, 2020
24809aa
*/Cargo.toml: Remove unused dependencies (#7590)
mxinden Nov 24, 2020
0ea060a
Merge remote-tracking branch 'parity/master' into bump/contracts
clearloop Nov 25, 2020
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
Bump lru from 0.4.3 to 0.6.1 (paritytech#7577)
Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.4.3 to 0.6.1.
- [Release notes](https://github.com/jeromefroe/lru-rs/releases)
- [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md)
- [Commits](jeromefroe/lru-rs@0.4.3...0.6.1)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Nov 23, 2020
commit 6c83f394219ec4460f13d6acf1799842edcc79ac
15 changes: 3 additions & 12 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 client/network-gossip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ futures = "0.3.4"
futures-timer = "3.0.1"
libp2p = { version = "0.30.1", default-features = false }
log = "0.4.8"
lru = "0.4.3"
lru = "0.6.1"
sc-network = { version = "0.8.0", path = "../network" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
wasm-timer = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion client/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ip_network = "0.3.4"
linked-hash-map = "0.5.2"
linked_hash_set = "0.1.3"
log = "0.4.8"
lru = "0.4.0"
lru = "0.6.1"
nohash-hasher = "0.2.0"
parking_lot = "0.10.0"
pin-project = "0.4.6"
Expand Down
2 changes: 1 addition & 1 deletion primitives/blockchain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
log = "0.4.11"
lru = "0.4.0"
lru = "0.6.1"
parking_lot = "0.10.0"
thiserror = "1.0.21"
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
Expand Down