This commit is contained in:
arkpar 2016-03-28 02:25:12 +02:00
parent b9141b830b
commit 20f3f356e5
6 changed files with 23 additions and 23 deletions

36
Cargo.lock generated
View File

@ -1,18 +1,18 @@
[root]
name = "parity"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"clippy 0.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
"ctrlc 1.1.1 (git+https://github.com/tomusdrw/rust-ctrlc.git)",
"daemonize 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"docopt 0.6.78 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"ethcore 1.0.0",
"ethcore 1.0.1",
"ethcore-devtools 1.0.0",
"ethcore-rpc 1.0.0",
"ethcore-util 1.0.0",
"ethcore-rpc 1.0.1",
"ethcore-util 1.0.1",
"ethminer 1.0.0",
"ethsync 1.0.0",
"ethsync 1.0.1",
"fdlimit 0.1.0",
"log 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"num_cpus 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
@ -208,14 +208,14 @@ dependencies = [
[[package]]
name = "ethcore"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"clippy 0.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
"crossbeam 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"ethash 1.0.0",
"ethcore-devtools 1.0.0",
"ethcore-util 1.0.0",
"ethcore-util 1.0.1",
"ethjson 0.1.0",
"heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
@ -235,14 +235,14 @@ dependencies = [
[[package]]
name = "ethcore-rpc"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"clippy 0.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
"ethash 1.0.0",
"ethcore 1.0.0",
"ethcore-util 1.0.0",
"ethcore 1.0.1",
"ethcore-util 1.0.1",
"ethminer 1.0.0",
"ethsync 1.0.0",
"ethsync 1.0.1",
"jsonrpc-core 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"jsonrpc-http-server 3.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
@ -256,7 +256,7 @@ dependencies = [
[[package]]
name = "ethcore-util"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"arrayvec 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
"bigint 0.1.0",
@ -293,7 +293,7 @@ dependencies = [
name = "ethjson"
version = "0.1.0"
dependencies = [
"ethcore-util 1.0.0",
"ethcore-util 1.0.1",
"rustc-serialize 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_codegen 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -307,8 +307,8 @@ version = "1.0.0"
dependencies = [
"clippy 0.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"ethcore 1.0.0",
"ethcore-util 1.0.0",
"ethcore 1.0.1",
"ethcore-util 1.0.1",
"log 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"rayon 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rustc-serialize 0.3.18 (registry+https://github.com/rust-lang/crates.io-index)",
@ -317,12 +317,12 @@ dependencies = [
[[package]]
name = "ethsync"
version = "1.0.0"
version = "1.0.1"
dependencies = [
"clippy 0.0.54 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"ethcore 1.0.0",
"ethcore-util 1.0.0",
"ethcore 1.0.1",
"ethcore-util 1.0.1",
"ethminer 1.0.0",
"heapsize 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,7 +1,7 @@
[package]
description = "Ethcore client."
name = "parity"
version = "1.0.0"
version = "1.0.1"
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io>"]
build = "build.rs"

View File

@ -3,7 +3,7 @@ description = "Ethcore library"
homepage = "http://ethcore.io"
license = "GPL-3.0"
name = "ethcore"
version = "1.0.0"
version = "1.0.1"
authors = ["Ethcore <admin@ethcore.io>"]
[dependencies]

View File

@ -1,7 +1,7 @@
[package]
description = "Ethcore jsonrpc"
name = "ethcore-rpc"
version = "1.0.0"
version = "1.0.1"
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io"]
build = "build.rs"

View File

@ -1,7 +1,7 @@
[package]
description = "Ethcore blockchain sync"
name = "ethsync"
version = "1.0.0"
version = "1.0.1"
license = "GPL-3.0"
authors = ["Ethcore <admin@ethcore.io"]

View File

@ -3,7 +3,7 @@ description = "Ethcore utility library"
homepage = "http://ethcore.io"
license = "GPL-3.0"
name = "ethcore-util"
version = "1.0.0"
version = "1.0.1"
authors = ["Ethcore <admin@ethcore.io>"]
build = "build.rs"