Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ethereum-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethereum-types"
version = "0.7.0"
version = "0.8.0"
Comment thread
stanislav-tkach marked this conversation as resolved.
Outdated
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -10,7 +10,7 @@ description = "Ethereum types"
ethbloom = { path = "../ethbloom", version = "0.7", default-features = false }
fixed-hash = { path = "../fixed-hash", version = "0.4", default-features = false, features = ["byteorder", "rustc-hex"] }
uint = { path = "../uint", version = "0.8", default-features = false }
primitive-types = { path = "../primitive-types", version = "0.4", features = ["rlp", "byteorder", "rustc-hex"], default-features = false }
primitive-types = { path = "../primitive-types", version = "0.5", features = ["rlp", "byteorder", "rustc-hex"], default-features = false }
impl-serde = { path = "../primitive-types/impls/serde", version = "0.2", default-features = false, optional = true }
impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.2", default-features = false }

Expand Down
4 changes: 2 additions & 2 deletions keccak-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keccak-hash"
version = "0.3.0"
version = "0.4.0"
Comment thread
stanislav-tkach marked this conversation as resolved.
Outdated
description = "`keccak-hash` is a set of utility functions to facilitate working with Keccak hashes (256/512 bits long)."
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
Expand All @@ -9,7 +9,7 @@ license = "GPL-3.0"

[dependencies]
tiny-keccak = "1.4"
primitive-types = { path = "../primitive-types", version = "0.4" }
primitive-types = { path = "../primitive-types", version = "0.5" }

[dev-dependencies]
tempdir = "0.3"
2 changes: 1 addition & 1 deletion kvdb-rocksdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ parity-rocksdb = "0.5"

[dev-dependencies]
tempdir = "0.3"
ethereum-types = { version = "0.7", path = "../ethereum-types" }
ethereum-types = { version = "0.8", path = "../ethereum-types" }
4 changes: 2 additions & 2 deletions primitive-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "primitive-types"
version = "0.4.0"
version = "0.5.0"
Comment thread
stanislav-tkach marked this conversation as resolved.
Outdated
authors = ["Parity Technologies <admin@parity.io>"]
license = "Apache-2.0/MIT"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -10,7 +10,7 @@ description = "Primitive types shared by Ethereum and Substrate"
fixed-hash = { version = "0.4", path = "../fixed-hash", default-features = false }
uint = { version = "0.8", path = "../uint", default-features = false }
impl-serde = { version = "0.2", path = "impls/serde", default-features = false, optional = true }
impl-codec = { version = "0.2", path = "impls/codec", default-features = false, optional = true }
impl-codec = { version = "0.3", path = "impls/codec", default-features = false, optional = true }
impl-rlp = { version = "0.2", path = "impls/rlp", default-features = false, optional = true }

[features]
Expand Down
4 changes: 2 additions & 2 deletions primitive-types/impls/codec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "impl-codec"
Comment thread
stanislav-tkach marked this conversation as resolved.
version = "0.2.0"
version = "0.3.0"
authors = ["Parity Technologies <admin@parity.io>"]
license = "Apache-2.0/MIT"
homepage = "https://github.com/paritytech/parity-common"
description = "Parity Codec serialization support for uint and fixed hash."

[dependencies]
parity-codec = { version = "3.0", default-features = false }
parity-codec = { version = "4.0", default-features = false }
Comment thread
stanislav-tkach marked this conversation as resolved.

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion rlp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ rustc-hex = {version = "2.0", default-features = false }

[dev-dependencies]
hex-literal = "0.2"
primitive-types = { path = "../primitive-types", version = "0.4", features = ["impl-rlp"] }
primitive-types = { path = "../primitive-types", version = "0.5", features = ["impl-rlp"] }

2 changes: 1 addition & 1 deletion transaction-pool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ smallvec = "0.6"
trace-time = { path = "../trace-time", version = "0.1" }

[dev-dependencies]
ethereum-types = { version = "0.7", path = "../ethereum-types" }
ethereum-types = { version = "0.8", path = "../ethereum-types" }
2 changes: 1 addition & 1 deletion triehash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ rlp = { version = "0.4", path = "../rlp" }
[dev-dependencies]
keccak-hasher = { version = "0.11.0" }
tiny-keccak = "1.4.2"
ethereum-types = { version = "0.7", path = "../ethereum-types" }
ethereum-types = { version = "0.8", path = "../ethereum-types" }
hex-literal = "0.2"