diff options
author | sterni <sternenseemann@systemli.org> | 2022-05-13T14·01+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-05-13T14·37+0000 |
commit | 60bce4045bac0cadf985d170742df145c62d229d (patch) | |
tree | 75507e20c09d92792cdf76b520d4fc5551e089cd /users/grfn/xanthous/server/src/main.rs | |
parent | 59f30030b09d8a6b3395c41d712814b6b44e1358 (diff) |
chore(users/grfn): cargo update r/4066
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>
Diffstat (limited to 'users/grfn/xanthous/server/src/main.rs')
-rw-r--r-- | users/grfn/xanthous/server/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/grfn/xanthous/server/src/main.rs b/users/grfn/xanthous/server/src/main.rs index f93ed6a3a421..1b2c1c104b33 100644 --- a/users/grfn/xanthous/server/src/main.rs +++ b/users/grfn/xanthous/server/src/main.rs @@ -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(()) |