add Clap to Error
Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
parent
f98bfbbdcd
commit
a552321287
3 changed files with 4 additions and 0 deletions
|
@ -57,6 +57,7 @@ bytes.workspace = true
|
|||
cargo_toml.workspace = true
|
||||
checked_ops.workspace = true
|
||||
chrono.workspace = true
|
||||
clap.workspace = true
|
||||
conduit-macros.workspace = true
|
||||
const-str.workspace = true
|
||||
ctor.workspace = true
|
||||
|
|
|
@ -62,6 +62,8 @@ pub enum Error {
|
|||
TomlSerError(#[from] toml::ser::Error),
|
||||
#[error("{0}")]
|
||||
TomlDeError(#[from] toml::de::Error),
|
||||
#[error("{0}")]
|
||||
Clap(#[from] clap::error::Error),
|
||||
|
||||
// ruma
|
||||
#[error("{0}")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue