feat: upgrade clap_verbosity_flag
All checks were successful
/ build (push) Successful in 2s
/ check (push) Successful in 7s

Adds tracing support which simplyfies code.
This commit is contained in:
Jalil David Salamé Messina 2024-11-23 13:09:26 +01:00
parent d98c4202f4
commit 60aed649b1
Signed by: jalil
GPG key ID: F016B9E770737A0B
3 changed files with 12 additions and 28 deletions

View file

@ -14,16 +14,13 @@ axum-auth = { version = "0.7", default-features = false, features = [
axum-client-ip = "0.6"
base64 = "0.22"
clap = { version = "4", features = ["derive", "env"] }
clap-verbosity-flag = "2"
clap-verbosity-flag = { version = "3", default-features = false, features = [
"tracing",
] }
http = "1"
miette = { version = "7", features = ["fancy"] }
ring = { version = "0.17", features = ["std"] }
tokio = { version = "1", features = [
"macros",
"rt",
"process",
"io-util",
] }
tokio = { version = "1", features = ["macros", "rt", "process", "io-util"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }