-
Notifications
You must be signed in to change notification settings - Fork 244
Upgrade dependencies #239
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
Merged
Merged
Upgrade dependencies #239
Changes from 4 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
cbba94c
Upgrade dependencies
Demi-Marie 4539e58
try to fix compile errors
Demi-Marie 8bc96c0
fix silly wrong import
Demi-Marie 6c2a087
Don’t require users of `uint` to import `rand`
Demi-Marie 2c32f26
Remove spurious version bump and extern crate
Demi-Marie 67b3008
Fix silly bogus import path
Demi-Marie d93ce32
Don’t bump crate versions unnecessarily
Demi-Marie c1cd0f6
Don’t explicitly depend on `rand`
Demi-Marie d7d6807
Merge remote-tracking branch 'origin/master' into demi-upgrade-deps
Demi-Marie 96c5a32
Revert "Don’t explicitly depend on `rand`"
Demi-Marie f7cccb8
Avoid depending explicitly on `rand`.
Demi-Marie dd3550d
Merge branch 'master' into demi-upgrade-deps
Demi-Marie 3ef8426
Bump `send_wrapper`
Demi-Marie 2142fc6
Fix silly mistake in tests
Demi-Marie 2dbf2f5
Merge branch 'master' into demi-upgrade-deps
Demi-Marie 5a900ab
Merge branch 'master' into demi-upgrade-deps
Demi-Marie File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| [package] | ||
| name = "kvdb-memorydb" | ||
| version = "0.1.2" | ||
| version = "0.1.3" | ||
|
Demi-Marie marked this conversation as resolved.
Outdated
|
||
| authors = ["Parity Technologies <admin@parity.io>"] | ||
| repository = "https://github.com/paritytech/parity-common" | ||
| description = "A key-value in-memory database that implements the `KeyValueDB` trait" | ||
| license = "GPL-3.0" | ||
| edition = "2018" | ||
|
|
||
| [dependencies] | ||
| parking_lot = "0.9" | ||
| parking_lot = "0.9.0" | ||
| kvdb = { version = "0.1", path = "../kvdb" } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,23 @@ | ||
| [package] | ||
| name = "kvdb-rocksdb" | ||
| version = "0.1.5" | ||
| version = "0.1.6" | ||
| authors = ["Parity Technologies <admin@parity.io>"] | ||
| repository = "https://github.com/paritytech/parity-common" | ||
| description = "kvdb implementation backed by rocksDB" | ||
| license = "GPL-3.0" | ||
| edition = "2018" | ||
|
|
||
| [dependencies] | ||
| elastic-array = "0.10" | ||
| elastic-array = "0.10.2" | ||
| fs-swap = "0.2.4" | ||
| interleaved-ordered = "0.1.0" | ||
| interleaved-ordered = "0.1.1" | ||
| kvdb = { version = "0.1", path = "../kvdb" } | ||
| log = "0.4" | ||
| num_cpus = "1.10" | ||
| parking_lot = "0.9" | ||
| regex = "1.3" | ||
| parity-rocksdb = "0.5" | ||
| log = "0.4.8" | ||
| num_cpus = "1.10.1" | ||
| parking_lot = "0.9.0" | ||
| regex = "1.3.1" | ||
| parity-rocksdb = "0.5.1" | ||
|
|
||
| [dev-dependencies] | ||
| tempdir = "0.3" | ||
| ethereum-types = { version = "0.8", path = "../ethereum-types" } | ||
| tempdir = "0.3.7" | ||
| ethereum-types = { version = "0.8.0", path = "../ethereum-types" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,12 @@ | ||
| [package] | ||
| name = "kvdb" | ||
| version = "0.1.0" | ||
| version = "0.1.1" | ||
| authors = ["Parity Technologies <admin@parity.io>"] | ||
| repository = "https://github.com/paritytech/parity-common" | ||
| description = "Generic key-value trait" | ||
| license = "GPL-3.0" | ||
| edition = "2018" | ||
|
|
||
| [dependencies] | ||
| elastic-array = "0.10" | ||
| elastic-array = "0.10.2" | ||
| bytes = { package = "parity-bytes", version = "0.1", path = "../parity-bytes" } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,11 +1,11 @@ | ||
| [package] | ||
| name = "parity-path" | ||
| version = "0.1.2" | ||
| version = "0.1.3" | ||
|
Demi-Marie marked this conversation as resolved.
Outdated
|
||
| authors = ["Parity Technologies <admin@parity.io>"] | ||
| repository = "https://github.com/paritytech/parity-common" | ||
| description = "Path utilities" | ||
| license = "GPL-3.0" | ||
| edition = "2018" | ||
|
|
||
| [dependencies] | ||
| home = "0.5" | ||
| home = "0.5.0" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.