-
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
Upgrade dependencies #239
Changes from all commits
cbba94c
4539e58
8bc96c0
6c2a087
2c32f26
67b3008
d93ce32
c1cd0f6
d7d6807
96c5a32
f7cccb8
dd3550d
3ef8426
2142fc6
2dbf2f5
5a900ab
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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" } |
| 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" } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,4 +8,4 @@ license = "GPL-3.0" | |
| edition = "2018" | ||
|
|
||
| [dependencies] | ||
| home = "0.5" | ||
| home = "0.5.1" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,12 +8,12 @@ homepage = "https://github.com/paritytech/parity-common" | |
| description = "Serde serialization support for uint and fixed hash." | ||
|
|
||
| [dependencies] | ||
| serde = "1.0" | ||
| serde = "1.0.101" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. let's not be too restrictive and revert this change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see your point, but I also wonder why someone would want to use an older patch release of
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Serde doesn't follow semver though and makes patch releases for new features as well, so this doesn't state which features of serde we rely on. On the other hand, I don't see why anyone would not want the latest version.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The only reason I can see is if they need to compile on ancient versions of
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't have a well defined policy wrt older rustc versions other than: "compiles on stable at the time of writing (the code)". Personally I don't mind being explicit about the version here. |
||
|
|
||
| [dev-dependencies] | ||
| criterion = "0.3.0" | ||
| serde_derive = "1.0" | ||
| serde_json = "1.0" | ||
| serde_derive = "1.0.101" | ||
| serde_json = "1.0.41" | ||
| uint = "0.8.1" | ||
|
|
||
| [[bench]] | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.