-
Notifications
You must be signed in to change notification settings - Fork 228
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into dp/chore/secp256k1-from-upstream
* master: Add different mode for malloc_size_of_is_0 macro dealing with generics (#334) [parity-crypto] Use upstream secp256k1 (#258) Bump parking_lot to 0.10 and minor versions (#332) Remove libc completely (#333)
- Loading branch information
Showing
13 changed files
with
111 additions
and
49 deletions.
There are no files selected for viewing
This file contains 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 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 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,16 +1,16 @@ | ||
[package] | ||
name = "kvdb-memorydb" | ||
version = "0.3.1" | ||
version = "0.4.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 = "GPL-3.0" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.4", default-features = false, features = ["std"] } | ||
parking_lot = "0.9.0" | ||
kvdb = { version = "0.3", path = "../kvdb" } | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.5", default-features = false, features = ["std"] } | ||
parking_lot = "0.10.0" | ||
kvdb = { version = "0.4", path = "../kvdb" } | ||
|
||
[dev-dependencies] | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.1" } | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.2" } |
This file contains 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 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 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,10 +1,10 @@ | ||
[package] | ||
name = "kvdb-shared-tests" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Parity Technologies <admin@parity.io>"] | ||
edition = "2018" | ||
description = "Shared tests for kvdb functionality, to be executed against actual implementations" | ||
license = "GPL-3.0" | ||
|
||
[dependencies] | ||
kvdb = { path = "../kvdb", version = "0.3" } | ||
kvdb = { path = "../kvdb", version = "0.4" } |
This file contains 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 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 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 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 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 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 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