Skip to content
Snippets Groups Projects
Commit 3cd546cf authored by clearloop's avatar clearloop Committed by GitHub
Browse files

chore(client): remove the unnecessary clap dep (#6107)

parent 72386f60
No related merge requests found
...@@ -5954,7 +5954,6 @@ dependencies = [ ...@@ -5954,7 +5954,6 @@ dependencies = [
"app_dirs", "app_dirs",
"atty", "atty",
"chrono", "chrono",
"clap",
"derive_more", "derive_more",
"env_logger 0.7.1", "env_logger 0.7.1",
"fdlimit", "fdlimit",
......
...@@ -12,7 +12,6 @@ repository = "https://github.com/paritytech/substrate/" ...@@ -12,7 +12,6 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"] targets = ["x86_64-unknown-linux-gnu"]
[dependencies] [dependencies]
clap = "2.33.0"
derive_more = "0.99.2" derive_more = "0.99.2"
env_logger = "0.7.0" env_logger = "0.7.0"
log = "0.4.8" log = "0.4.8"
......
...@@ -27,7 +27,7 @@ pub enum Error { ...@@ -27,7 +27,7 @@ pub enum Error {
/// Io error /// Io error
Io(std::io::Error), Io(std::io::Error),
/// Cli error /// Cli error
Cli(clap::Error), Cli(structopt::clap::Error),
/// Service error /// Service error
Service(sc_service::Error), Service(sc_service::Error),
/// Client error /// Client error
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment