Update some dependencies: (#4207)

- derive_more 0.15 -> 0.99
- strum 0.15 -> 0.16
- slog_derive 0.1 -> 0.2

Signed-off-by: koushiro <koushiro.cqx@gmail.com>
This commit is contained in:
Qinxuan Chen
2019-11-27 01:39:58 +08:00
committed by Gavin Wood
parent a758d54f6e
commit c7d9c58ce8
29 changed files with 80 additions and 65 deletions
+2
View File
@@ -33,11 +33,13 @@ pub enum Error {
/// Client error
Client(client_api::error::Error),
/// Input error
#[from(ignore)]
Input(String),
/// Invalid listen multiaddress
#[display(fmt="Invalid listen multiaddress")]
InvalidListenMultiaddress,
/// Other uncategorized error.
#[from(ignore)]
Other(String),
}