-
Notifications
You must be signed in to change notification settings - Fork 225
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
chore(deps): cargo upgrade parking_lot --all #470
Changes from 9 commits
322e492
9909c17
a2ac9be
eb8433a
a433052
c97bc78
cf0f1e1
fd5436a
b23a78a
3ea42ac
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,16 +1,20 @@ | ||
[package] | ||
name = "kvdb-memorydb" | ||
version = "0.7.0" | ||
version = "0.8.0" | ||
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 = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.7", default-features = false, features = ["std"] } | ||
parking_lot = "0.10.0" | ||
kvdb = { version = "0.7", path = "../kvdb" } | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.8", default-features = false, features = ["std"] } | ||
parking_lot = "0.11.1" | ||
kvdb = { version = "0.8", path = "../kvdb" } | ||
|
||
[dev-dependencies] | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.5" } | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.6" } | ||
|
||
[features] | ||
default = [] | ||
wasm-bindgen = ["parking_lot/wasm-bindgen"] | ||
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. This is required because of https://github.com/Amanieu/parking_lot/blob/37ceeb36a1b0ef9cc0176ef0c9e35b8562002656/Cargo.toml#L31 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. FYI, I didn't add this to:
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. This is not ideal, because we'd want to eventually get rid of However, I think 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. ok, we could do another super ugly hack, just to bring in 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. yeah, that's what I did when I wrote
I think it's fine as is though. 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.
This is terrible but let's do it anyway. We need a fat-ass comment in |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "kvdb-shared-tests" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
edition = "2018" | ||
description = "Shared tests for kvdb functionality, to be executed against actual implementations" | ||
license = "MIT OR Apache-2.0" | ||
|
||
[dependencies] | ||
kvdb = { path = "../kvdb", version = "0.7" } | ||
kvdb = { path = "../kvdb", version = "0.8" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe?