diff --git a/polkadot/api/Cargo.toml b/polkadot/api/Cargo.toml index 5a883cfd2c..7b5015b991 100644 --- a/polkadot/api/Cargo.toml +++ b/polkadot/api/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" authors = ["Parity Technologies "] [dependencies] -error-chain = "0.11" +error-chain = "0.12" polkadot-executor = { path = "../executor" } polkadot-runtime = { path = "../runtime" } polkadot-primitives = { path = "../primitives" } diff --git a/polkadot/cli/Cargo.toml b/polkadot/cli/Cargo.toml index 82e63d16b7..48dd25ebc8 100644 --- a/polkadot/cli/Cargo.toml +++ b/polkadot/cli/Cargo.toml @@ -7,7 +7,7 @@ description = "Polkadot node implementation in Rust." [dependencies] clap = { version = "2.27", features = ["yaml"] } env_logger = "0.4" -error-chain = "0.11" +error-chain = "0.12" log = "0.3" atty = "0.2" regex = "0.2" diff --git a/polkadot/consensus/Cargo.toml b/polkadot/consensus/Cargo.toml index 9941a21b33..fefa67de45 100644 --- a/polkadot/consensus/Cargo.toml +++ b/polkadot/consensus/Cargo.toml @@ -8,7 +8,7 @@ futures = "0.1.17" parking_lot = "0.4" tokio-core = "0.1.12" ed25519 = { path = "../../substrate/ed25519" } -error-chain = "0.11" +error-chain = "0.12" log = "0.3" exit-future = "0.1" polkadot-api = { path = "../api" } diff --git a/polkadot/parachain/Cargo.toml b/polkadot/parachain/Cargo.toml index 47cde571e1..9b46f3f1c2 100644 --- a/polkadot/parachain/Cargo.toml +++ b/polkadot/parachain/Cargo.toml @@ -7,7 +7,7 @@ description = "Types and utilities for creating and working with parachains" [dependencies] substrate-codec = { path = "../../substrate/codec", default-features = false } wasmi = { version = "0.1", optional = true } -error-chain = { version = "0.11", optional = true } +error-chain = { version = "0.12", optional = true } [dev-dependencies] tiny-keccak = "1.4" diff --git a/polkadot/service/Cargo.toml b/polkadot/service/Cargo.toml index 86b4deea50..e8274f66b2 100644 --- a/polkadot/service/Cargo.toml +++ b/polkadot/service/Cargo.toml @@ -7,7 +7,7 @@ authors = ["Parity Technologies "] futures = "0.1.17" parking_lot = "0.4" tokio-timer = "0.1.2" -error-chain = "0.11" +error-chain = "0.12" lazy_static = "1.0" log = "0.3" slog = "^2" diff --git a/polkadot/transaction-pool/Cargo.toml b/polkadot/transaction-pool/Cargo.toml index 89fa3e88c0..588db7ef0b 100644 --- a/polkadot/transaction-pool/Cargo.toml +++ b/polkadot/transaction-pool/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] [dependencies] log = "0.3.0" -error-chain = "0.11" +error-chain = "0.12" parking_lot = "0.4" polkadot-api = { path = "../api" } polkadot-primitives = { path = "../primitives" }