-
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 ao-rocksdb-new-format
* master: kvdb-rocksdb: optimize and rename iter_from_prefix (#365) bump parity-util-mem (#376) parity-util-mem: fix for windows (#375) keccak-hash: fix bench and add one for range (#372) [parity-crypto] Release 0.6.1 (#373) keccak-hash: bump version to 0.5.1 (#371) keccak-hash: add keccak256_range and keccak512_range functions (#370) Allow pubkey recovery for all-zero messages (#369) Delete by prefix operator in kvdb (#360) kvdb: no overlay (#313) Ban duplicates of parity-uil-mem from being linked into the same program (#363) Use correct license ID (#362) Memtest example for Rocksdb (#349) Prep for release (#361) parity-util-mem: prepare release for 0.5.2 (#359) travis: test parity-util-mem on android (#358) parity-util-mem: update mimalloc feature (#352) kvdb: remove parity-bytes dependency (#351) parity-util-mem: use malloc for usable_size on android (#355) CI: troubleshoot macOS build (#356)
- Loading branch information
Showing
65 changed files
with
769 additions
and
371 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
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,8 +1,8 @@ | ||
[package] | ||
name = "contract-address" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT/Apache2.0" | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
repository = "https://github.com/paritytech/parity-common" | ||
description = "A utility crate to create an ethereum contract address" | ||
|
@@ -11,9 +11,9 @@ edition = "2018" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
ethereum-types = { version = "0.8.0", path = "../ethereum-types" } | ||
ethereum-types = { version = "0.9.0", path = "../ethereum-types" } | ||
rlp = { version = "0.4", path = "../rlp" } | ||
keccak-hash = { version = "0.4", path = "../keccak-hash", default-features = false } | ||
keccak-hash = { version = "0.5", path = "../keccak-hash", default-features = false } | ||
|
||
[features] | ||
default = [] | ||
|
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,9 +1,9 @@ | ||
[package] | ||
name = "ethbloom" | ||
version = "0.8.1" | ||
version = "0.9.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Ethereum bloom filter" | ||
license = "MIT/Apache2.0" | ||
license = "MIT OR Apache-2.0" | ||
documentation = "https://docs.rs/ethbloom" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
repository = "https://github.com/paritytech/parity-common" | ||
|
@@ -12,7 +12,7 @@ edition = "2018" | |
[dependencies] | ||
tiny-keccak = { version = "2.0", features = ["keccak"] } | ||
crunchy = { version = "0.2.2", default-features = false, features = ["limit_256"] } | ||
fixed-hash = { path = "../fixed-hash", version = "0.5", default-features = false } | ||
fixed-hash = { path = "../fixed-hash", version = "0.6", default-features = false } | ||
impl-serde = { path = "../primitive-types/impls/serde", version = "0.3", default-features = false, optional = true } | ||
impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.2", 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,17 +1,17 @@ | ||
[package] | ||
name = "ethereum-types" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT/Apache2.0" | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
description = "Ethereum types" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
ethbloom = { path = "../ethbloom", version = "0.8", default-features = false } | ||
fixed-hash = { path = "../fixed-hash", version = "0.5", default-features = false, features = ["byteorder", "rustc-hex"] } | ||
ethbloom = { path = "../ethbloom", version = "0.9", default-features = false } | ||
fixed-hash = { path = "../fixed-hash", version = "0.6", default-features = false, features = ["byteorder", "rustc-hex"] } | ||
uint-crate = { path = "../uint", package = "uint", version = "0.8", default-features = false } | ||
primitive-types = { path = "../primitive-types", version = "0.6", features = ["rlp", "byteorder", "rustc-hex"], default-features = false } | ||
primitive-types = { path = "../primitive-types", version = "0.7", features = ["rlp", "byteorder", "rustc-hex"], default-features = false } | ||
impl-serde = { path = "../primitive-types/impls/serde", version = "0.3.0", default-features = false, optional = true } | ||
impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.2", 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,8 +1,8 @@ | ||
[package] | ||
name = "fixed-hash" | ||
version = "0.5.2" | ||
version = "0.6.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "MIT/Apache2.0" | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
repository = "https://github.com/paritytech/parity-common" | ||
description = "Macros to define custom fixed-size hash types" | ||
|
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 = "keccak-hash" | ||
version = "0.4.1" | ||
version = "0.5.1" | ||
description = "`keccak-hash` is a set of utility functions to facilitate working with Keccak hashes (256/512 bits long)." | ||
authors = ["Parity Technologies <[email protected]>"] | ||
repository = "https://github.com/paritytech/parity-common" | ||
readme = "README.md" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
tiny-keccak = { version = "2.0", features = ["keccak"] } | ||
primitive-types = { path = "../primitive-types", version = "0.6", default-features = false } | ||
primitive-types = { path = "../primitive-types", version = "0.7", default-features = false } | ||
|
||
[dev-dependencies] | ||
tempdir = "0.3.7" | ||
|
@@ -19,3 +19,7 @@ criterion = "0.3.0" | |
[features] | ||
default = ["std"] | ||
std = [] | ||
|
||
[[bench]] | ||
name = "keccak_256" | ||
harness = 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
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.4.0" | ||
version = "0.5.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 = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
||
[dependencies] | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.5", default-features = false, features = ["std"] } | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.6", default-features = false, features = ["std"] } | ||
parking_lot = "0.10.0" | ||
kvdb = { version = "0.4", path = "../kvdb" } | ||
kvdb = { version = "0.5", path = "../kvdb" } | ||
|
||
[dev-dependencies] | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.2" } | ||
kvdb-shared-tests = { path = "../kvdb-shared-tests", version = "0.3" } |
Oops, something went wrong.