-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move to rust 2021 * rust-version = "1.56.1" * Update CHANGELOG for 2021 and MSRV 1.56.1 * delete fuzz changelog Co-authored-by: Andronik Ordian <[email protected]>
- Loading branch information
Showing
40 changed files
with
61 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"fixed-hash", | ||
"keccak-hash", | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
description = "Ethereum types" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
ethbloom = { path = "../ethbloom", version = "0.11", 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
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 |
---|---|---|
|
@@ -6,7 +6,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
repository = "https://github.com/paritytech/parity-common" | ||
readme = "README.md" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
tiny-keccak = { version = "2.0", features = ["keccak"] } | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ 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 OR Apache-2.0" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
parity-util-mem = { path = "../parity-util-mem", version = "0.10", default-features = false, features = ["std"] } | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
repository = "https://github.com/paritytech/parity-common" | ||
description = "kvdb implementation backed by RocksDB" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[[bench]] | ||
name = "bench_read_perf" | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
name = "kvdb-shared-tests" | ||
version = "0.8.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
description = "Shared tests for kvdb functionality, to be executed against actual implementations" | ||
license = "MIT OR Apache-2.0" | ||
|
||
|
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
repository = "https://github.com/paritytech/parity-common" | ||
description = "Generic key-value trait" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
smallvec = "1.0.0" | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
repository = "https://github.com/paritytech/parity-common" | ||
description = "byte utilities for Parity" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[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
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
repository = "https://github.com/paritytech/parity-common" | ||
description = "Collection of memory related utilities" | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
# Prevent multiple versions from being linked into the same program. | ||
links = "parity-util-mem-ban-duplicates" | ||
|
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 |
---|---|---|
|
@@ -5,6 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
license = "MIT OR Apache-2.0" | ||
description = "Crate for memory reporting" | ||
repository = "https://github.com/paritytech/pariry-common/parity-util-mem/derive" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[lib] | ||
path = "lib.rs" | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
description = "Primitive types shared by Ethereum and Substrate" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
fixed-hash = { version = "0.7", path = "../fixed-hash", 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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
description = "Parity Codec serialization support for uint and fixed hash." | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
parity-scale-codec = { version = "2.2.0", default-features = false, features = ["max-encoded-len"] } | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
description = "num-traits implementation for uint." | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
num-traits = { 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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
description = "RLP serialization support for uint and fixed hash." | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
rlp = { version = "0.5", path = "../../../rlp", 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 |
---|---|---|
|
@@ -2,10 +2,11 @@ | |
name = "impl-serde" | ||
version = "0.3.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/paritytech/parity-common" | ||
description = "Serde serialization support for uint and fixed hash." | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[features] | ||
default = ["std"] | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <[email protected]>"] | |
license = "MIT OR Apache-2.0" | ||
description = "Derive macro for #[derive(RlpEncodable, RlpDecodable)]" | ||
homepage = "http://parity.io" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ description = "Recursive-length prefix encoding, decoding, and compression" | |
repository = "https://github.com/paritytech/parity-common" | ||
license = "MIT OR Apache-2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
bytes = { version = "1", 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 |
---|---|---|
|
@@ -7,7 +7,8 @@ name = "uint" | |
version = "0.9.1" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
readme = "README.md" | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[dependencies] | ||
byteorder = { version = "1.4.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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,8 @@ description = "Fuzzers for uint algorithms" | |
publish = false | ||
version = "0.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
|
||
[package.metadata] | ||
cargo-fuzz = true | ||
|