-
Notifications
You must be signed in to change notification settings - Fork 225
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 <[email protected]>"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kvdb-rocksdb" | ||
version = "0.4.2" | ||
version = "0.5.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
repository = "https://github.com/paritytech/parity-common" | ||
description = "kvdb implementation backed by RocksDB" | ||
|
@@ -15,19 +15,19 @@ harness = false | |
smallvec = "1.0.0" | ||
fs-swap = "0.2.4" | ||
interleaved-ordered = "0.1.1" | ||
kvdb = { path = "../kvdb", version = "0.3" } | ||
kvdb = { path = "../kvdb", version = "0.4" } | ||
log = "0.4.8" | ||
num_cpus = "1.10.1" | ||
parking_lot = "0.9.0" | ||
parking_lot = "0.10.0" | ||
regex = "1.3.1" | ||
rocksdb = { version = "0.13", features = ["snappy"], default-features = false } | ||
owning_ref = "0.4.0" | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.4", default-features = false, features = ["std", "smallvec"] } | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.5", default-features = false, features = ["std", "smallvec"] } | ||
|
||
[dev-dependencies] | ||
alloc_counter = "0.0.4" | ||
criterion = "0.3" | ||
ethereum-types = { path = "../ethereum-types" } | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.1" } | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.2" } | ||
rand = "0.7.2" | ||
tempdir = "0.3.7" |
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 <[email protected]>"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kvdb-web" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
repository = "https://github.com/paritytech/parity-common" | ||
description = "A key-value database for use in browsers" | ||
|
@@ -11,12 +11,12 @@ edition = "2018" | |
[dependencies] | ||
wasm-bindgen = "0.2.54" | ||
js-sys = "0.3.31" | ||
kvdb = { version = "0.3", path = "../kvdb" } | ||
kvdb-memorydb = { version = "0.3", path = "../kvdb-memorydb" } | ||
kvdb = { version = "0.4", path = "../kvdb" } | ||
kvdb-memorydb = { version = "0.4", path = "../kvdb-memorydb" } | ||
futures = "0.3" | ||
log = "0.4.8" | ||
send_wrapper = "0.3.0" | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.4", default-features = false } | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.5", default-features = false } | ||
|
||
[dependencies.web-sys] | ||
version = "0.3.31" | ||
|
@@ -39,6 +39,6 @@ features = [ | |
|
||
[dev-dependencies] | ||
console_log = "0.1.2" | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.1" } | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.2" } | ||
wasm-bindgen-test = "0.3.4" | ||
wasm-bindgen-futures = "0.4.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "kvdb" | ||
version = "0.3.1" | ||
version = "0.4.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
repository = "https://github.com/paritytech/parity-common" | ||
description = "Generic key-value trait" | ||
|
@@ -10,4 +10,4 @@ edition = "2018" | |
[dependencies] | ||
smallvec = "1.0.0" | ||
bytes = { package = "parity-bytes", version = "0.1", path = "../parity-bytes" } | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.4", default-features = false } | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.5", default-features = false } |
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,6 +1,6 @@ | ||
[package] | ||
name = "parity-util-mem" | ||
version = "0.4.2" | ||
version = "0.5.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
repository = "https://github.com/paritytech/parity-common" | ||
description = "Collection of memory related utilities" | ||
|
@@ -25,7 +25,7 @@ impl-trait-for-tuples = "0.1.3" | |
|
||
smallvec = { version = "1.0.0", optional = true } | ||
ethereum-types = { version = "0.8.0", optional = true, path = "../ethereum-types" } | ||
parking_lot = { version = "0.9.0", optional = true } | ||
parking_lot = { version = "0.10.0", optional = true } | ||
primitive-types = { version = "0.6", path = "../primitive-types", default-features = false, optional = true } | ||
|
||
[target.'cfg(target_os = "windows")'.dependencies] | ||
|
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