Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies #239

Merged
merged 16 commits into from
Oct 24, 2019
Merged
Show file tree
Hide file tree
Changes from 4 commits
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 contract-address/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "contract-address"
version = "0.3.0"
version = "0.3.1"
Demi-Marie marked this conversation as resolved.
Show resolved Hide resolved
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -11,7 +11,7 @@ edition = "2018"
readme = "README.md"

[dependencies]
ethereum-types = { version = "0.8", path = "../ethereum-types" }
ethereum-types = { version = "0.8.1", path = "../ethereum-types" }
rlp = { version = "0.4", path = "../rlp" }
keccak-hash = { version = "0.4", path = "../keccak-hash", default-features = false }

Expand Down
12 changes: 6 additions & 6 deletions ethbloom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethbloom"
version = "0.8.0"
version = "0.8.1"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Ethereum bloom filter"
license = "MIT"
Expand All @@ -10,16 +10,16 @@ repository = "https://github.com/paritytech/parity-common"
edition = "2018"

[dependencies]
tiny-keccak = "1.5"
crunchy = { version = "0.2", default-features = false, features = ["limit_256"] }
tiny-keccak = "1.5.0"
crunchy = { version = "0.2.2", default-features = false, features = ["limit_256"] }
fixed-hash = { path = "../fixed-hash", version = "0.5", 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 }

[dev-dependencies]
criterion = "0.3"
rand = "0.7"
hex-literal = "0.2"
criterion = "0.3.0"
rand = "0.7.2"
hex-literal = "0.2.1"

[features]
default = ["std", "serialize", "libc", "rustc-hex"]
Expand Down
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.8.0"
version = "0.8.1"
Demi-Marie marked this conversation as resolved.
Show resolved Hide resolved
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -16,7 +16,7 @@ impl-serde = { path = "../primitive-types/impls/serde", version = "0.2", default
impl-rlp = { path = "../primitive-types/impls/rlp", version = "0.2", default-features = false }

[dev-dependencies]
serde_json = "1.0"
serde_json = "1.0.41"

[features]
default = ["std", "serialize"]
Expand Down
14 changes: 7 additions & 7 deletions fixed-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fixed-hash"
version = "0.5.0"
version = "0.5.1"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
homepage = "https://github.com/paritytech/parity-common"
Expand All @@ -14,17 +14,17 @@ edition = "2018"
features = ["quickcheck", "api-dummy"]

[dependencies]
rand = { version = "0.7", optional = true, default-features = false }
rustc-hex = { version = "2.0", optional = true, default-features = false }
quickcheck = { version = "0.9", optional = true }
byteorder = { version = "1.2", optional = true, default-features = false }
static_assertions = "0.3"
rand = { version = "0.7.2", optional = true, default-features = false }
rustc-hex = { version = "2.0.1", optional = true, default-features = false }
quickcheck = { version = "0.9.0", optional = true }
byteorder = { version = "1.3.2", optional = true, default-features = false }
static_assertions = "1.0.0"
Demi-Marie marked this conversation as resolved.
Show resolved Hide resolved

[dev-dependencies]
rand_xorshift = "0.2.0"

[target.'cfg(not(target_os = "unknown"))'.dependencies]
libc = { version = "0.2", optional = true, default-features = false }
libc = { version = "0.2.62", optional = true, default-features = false }

[features]
default = ["std", "libc", "rand", "rustc-hex", "byteorder"]
Expand Down
1 change: 0 additions & 1 deletion fixed-hash/src/hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,6 @@ macro_rules! impl_ops_for_hash {
macro_rules! impl_fixed_hash_conversions {
($large_ty:ident, $small_ty:ident) => {
$crate::static_assertions::const_assert!(
VALID_SIZES;
$crate::core_::mem::size_of::<$small_ty>() < $crate::core_::mem::size_of::<$large_ty>()
);

Expand Down
6 changes: 3 additions & 3 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.4.0"
version = "0.4.1"
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,11 +9,11 @@ license = "GPL-3.0"
edition = "2018"

[dependencies]
tiny-keccak = "1.4"
tiny-keccak = "1.5.0"
primitive-types = { path = "../primitive-types", version = "0.6", default-features = false }

[dev-dependencies]
tempdir = "0.3"
tempdir = "0.3.7"

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions kvdb-memorydb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "kvdb-memorydb"
version = "0.1.2"
version = "0.1.3"
Demi-Marie marked this conversation as resolved.
Show resolved Hide resolved
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]
parking_lot = "0.9"
parking_lot = "0.9.0"
kvdb = { version = "0.1", path = "../kvdb" }
20 changes: 10 additions & 10 deletions kvdb-rocksdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[package]
name = "kvdb-rocksdb"
version = "0.1.5"
version = "0.1.6"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "kvdb implementation backed by rocksDB"
license = "GPL-3.0"
edition = "2018"

[dependencies]
elastic-array = "0.10"
elastic-array = "0.10.2"
fs-swap = "0.2.4"
interleaved-ordered = "0.1.0"
interleaved-ordered = "0.1.1"
kvdb = { version = "0.1", path = "../kvdb" }
log = "0.4"
num_cpus = "1.10"
parking_lot = "0.9"
regex = "1.3"
parity-rocksdb = "0.5"
log = "0.4.8"
num_cpus = "1.10.1"
parking_lot = "0.9.0"
regex = "1.3.1"
parity-rocksdb = "0.5.1"

[dev-dependencies]
tempdir = "0.3"
ethereum-types = { version = "0.8", path = "../ethereum-types" }
tempdir = "0.3.7"
ethereum-types = { version = "0.8.0", path = "../ethereum-types" }
12 changes: 6 additions & 6 deletions kvdb-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kvdb-web"
version = "0.1.0"
version = "0.1.1"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "A key-value database for use in browsers"
Expand All @@ -9,16 +9,16 @@ license = "GPL-3.0"
edition = "2018"

[dependencies]
wasm-bindgen = "0.2.49"
js-sys = "0.3.26"
wasm-bindgen = "0.2.51"
js-sys = "0.3.28"
kvdb = { version = "0.1", path = "../kvdb" }
kvdb-memorydb = { version = "0.1", path = "../kvdb-memorydb" }
futures-preview = "0.3.0-alpha.18"
futures-preview = "0.3.0-alpha.19"
log = "0.4.8"
send_wrapper = "0.2.0"

[dependencies.web-sys]
version = "0.3.26"
version = "0.3.28"
features = [
'console',
'Window',
Expand All @@ -38,6 +38,6 @@ features = [

[dev-dependencies]
wasm-bindgen-test = "0.2.49"
futures-preview = { version = "0.3.0-alpha.18", features = ['compat'] }
futures-preview = { version = "0.3.0-alpha.19", features = ['compat'] }
futures01 = { package = "futures", version = "0.1" }
console_log = "0.1.2"
4 changes: 2 additions & 2 deletions kvdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "kvdb"
version = "0.1.0"
version = "0.1.1"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "Generic key-value trait"
license = "GPL-3.0"
edition = "2018"

[dependencies]
elastic-array = "0.10"
elastic-array = "0.10.2"
bytes = { package = "parity-bytes", version = "0.1", path = "../parity-bytes" }
2 changes: 1 addition & 1 deletion parity-bytes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parity-bytes"
version = "0.1.0"
version = "0.1.1"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "byte utilities for Parity"
Expand Down
18 changes: 9 additions & 9 deletions parity-crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parity-crypto"
version = "0.4.1"
version = "0.4.2"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "Crypto utils used by ethstore and network."
Expand All @@ -14,19 +14,19 @@ harness = false


[dependencies]
tiny-keccak = "1.4"
scrypt = { version = "0.2", default-features = false }
tiny-keccak = "1.5.0"
scrypt = { version = "0.2.0", default-features = false }
ripemd160 = "0.8.0"
sha2 = "0.8.0"
digest = "0.8"
hmac = "0.7"
digest = "0.8.1"
hmac = "0.7.1"
aes = "0.3.2"
aes-ctr = "0.3.0"
block-modes = "0.3.3"
pbkdf2 = "0.3.0"
subtle = "2.1"
zeroize = "0.9.1"
subtle = "2.2.1"
zeroize = { version = "0.10.1", default-features = false }

[dev-dependencies]
criterion = "0.2"
hex-literal = "0.2"
criterion = "0.3.0"
hex-literal = "0.2.1"
4 changes: 2 additions & 2 deletions parity-path/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "parity-path"
version = "0.1.2"
version = "0.1.3"
Demi-Marie marked this conversation as resolved.
Show resolved Hide resolved
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "Path utilities"
license = "GPL-3.0"
edition = "2018"

[dependencies]
home = "0.5"
home = "0.5.0"
24 changes: 12 additions & 12 deletions parity-util-mem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
[package]
name = "parity-util-mem"
version = "0.2.0"
version = "0.2.1"
authors = ["Parity Technologies <admin@parity.io>"]
repository = "https://github.com/paritytech/parity-common"
description = "Collection of memory related utilities"
license = "GPL-3.0"
edition = "2018"

[dependencies]
cfg-if = "0.1.6"
cfg-if = "0.1.10"
malloc_size_of_derive = "0.1.0"
dlmalloc = { version = "0.1", features = ["global"], optional = true }
wee_alloc = { version = "0.4", optional = true }
dlmalloc = { version = "0.1.3", features = ["global"], optional = true }
wee_alloc = { version = "0.4.5", optional = true }
# from https://github.com/microsoft/mimalloc:
# mimalloc can be built in secure mode,
# adding guard pages, randomized allocation, encrypted free lists, etc.
# to protect against various heap vulnerabilities.
# The performance penalty is only around 3% on average over our benchmarks.
mimallocator = { version = "0.1", features = ["secure"], optional = true }
mimalloc-sys = { version = "0.1", optional = true }
mimallocator = { version = "0.1.3", features = ["secure"], optional = true }
mimalloc-sys = { version = "0.1.6", optional = true }

elastic-array = { version = "0", optional = true }
ethereum-types = { version = "0", optional = true }
parking_lot = { version = "0", optional = true }
elastic-array = { version = "0.10.2", optional = true }
ethereum-types = { version = "0.8.0", optional = true, path = "../ethereum-types" }
parking_lot = { version = "0.9.0", optional = true }

[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3.4"
[target.'cfg(target_os = "windows")'.dependencies]
winapi = "0.3.8"

[target.'cfg(not(target_os = "windows"))'.dependencies.jemallocator]
version = "0.1"
version = "0.3.2"
optional = true

[features]
Expand Down
6 changes: 3 additions & 3 deletions plain_hasher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "plain_hasher"
description = "Hasher for 32-byte keys."
version = "0.2.1"
version = "0.2.2"
authors = ["Parity Technologies <admin@parity.io>"]
license = "MIT"
keywords = ["hash", "hasher"]
Expand All @@ -10,10 +10,10 @@ categories = ["no-std"]
edition = "2018"

[dependencies]
crunchy = { version = "0.2", default-features = false }
crunchy = { version = "0.2.2", default-features = false }

[dev-dependencies]
criterion = "0.3"
criterion = "0.3.0"

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions primitive-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "primitive-types"
version = "0.6.0"
version = "0.6.1"
authors = ["Parity Technologies <admin@parity.io>"]
license = "Apache-2.0/MIT"
homepage = "https://github.com/paritytech/parity-common"
description = "Primitive types shared by Ethereum and Substrate"

[dependencies]
fixed-hash = { version = "0.5", path = "../fixed-hash", default-features = false }
uint = { version = "0.8", path = "../uint", default-features = false }
uint = { version = "0.8.1", path = "../uint", default-features = false }
impl-serde = { version = "0.2.1", path = "impls/serde", default-features = false, optional = true }
impl-codec = { version = "0.4.1", path = "impls/codec", default-features = false, optional = true }
impl-rlp = { version = "0.2", path = "impls/rlp", default-features = false, optional = true }
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"
version = "0.4.1"
version = "0.4.2"
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-scale-codec = { version = "1.0.3", default-features = false }
parity-scale-codec = { version = "1.0.6", default-features = false }

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion primitive-types/impls/rlp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "impl-rlp"
version = "0.2.0"
version = "0.2.1"
Demi-Marie marked this conversation as resolved.
Show resolved Hide resolved
authors = ["Parity Technologies <admin@parity.io>"]
license = "Apache-2.0/MIT"
homepage = "https://github.com/paritytech/parity-common"
Expand Down
Loading