chore(users/grfn): cargo update

I believe this should take care of all advisories.

Change-Id: I20984caa20897c0d0541f427a657990dc9b156fb
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5584
Autosubmit: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
sterni 2022-05-13 16:01:20 +02:00 committed by clbot
parent 59f30030b0
commit 60bce4045b
4 changed files with 507 additions and 588 deletions

File diff suppressed because it is too large Load diff

View file

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2018"
[dependencies]
clap = "3.0.0-beta.5"
clap = { version = "3.0", features = [ "derive", "env" ] }
color-eyre = "0.5.11"
eyre = "0.6.5"
thrussh = "0.33.5"

View file

@ -95,7 +95,7 @@ impl Opts {
"full" => s.init(),
"pretty" => s.pretty().init(),
"json" => s.json().with_current_span(true).init(),
_ => bail!("Invalid log format `{}`"),
f => bail!("Invalid log format `{}`", f),
}
Ok(())