chore: update dependencies and reorder Cargo.toml entries

This commit is contained in:
Andrew Phillips
2025-08-13 11:01:06 -03:00
committed by Andrew Phillips (aider)
parent 371929c127
commit 138ebafbb5

View File

@@ -14,44 +14,44 @@ path = "src/tests.rs"
[dependencies] [dependencies]
anyhow = "1.0.72" anyhow = "1.0.72"
clap = { version = "4.3.10", features = ["derive", "env"] } axum = "0.8.4"
directories = "5.0.1"
lazy_static = "1.4.0"
libc = "0.2.147"
log = "0.4.19"
rusqlite = { version = "0.29.0", features = ["bundled", "array", "chrono"] }
rusqlite_migration = "1.0.2"
stderrlog = "0.5.4"
strum_macros = "0.25"
strum = { version = "0.25", features = ["derive"] }
prettytable-rs = "0.10.0"
chrono = "0.4.26" chrono = "0.4.26"
gethostname = "0.4.3" clap = { version = "4.3.10", features = ["derive", "env"] }
humansize = "2.1.3" directories = "6.0.0"
dns-lookup = "2.0.2"
enum-map = "2.6.1" enum-map = "2.6.1"
flate2 = { version = "1.0.27", features = ["zlib-ng-compat"] }
gethostname = "1.0.2"
humansize = "2.1.3"
hyper = { version = "1.0", features = ["full"] }
inventory = "0.3" inventory = "0.3"
is-terminal = "0.4.9" is-terminal = "0.4.9"
term = "0.7.0" lazy_static = "1.4.0"
libc = "0.2.147"
local-ip-address = "0.6.5"
log = "0.4.19"
lz4_flex = "0.11.1" lz4_flex = "0.11.1"
flate2 = { version = "1.0.27", features = ["zlib-ng-compat"] } nix = "0.30.1"
once_cell = "1.19.0"
prettytable-rs = "0.10.0"
regex = "1.9.5" regex = "1.9.5"
nix = "0.26.2" rusqlite = { version = "0.37.0", features = ["bundled", "array", "chrono"] }
sha2 = "0.10.0" rusqlite_migration = "1.3.1"
local-ip-address = "0.5.5"
dns-lookup = "2.0.2"
uzers = "0.11.3"
serde = { version = "1.0.219", features = ["derive"] } serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.142" serde_json = "1.0.142"
serde_yaml = "0.9.34" serde_yaml = "0.9.34"
sha2 = "0.10.0"
stderrlog = "0.6.0"
strum = { version = "0.27.2", features = ["derive"] }
strum_macros = "0.27.2"
term = "1.1.0"
tokio = { version = "1.0", features = ["full"] } tokio = { version = "1.0", features = ["full"] }
axum = "0.7" tower = "0.5.2"
tower = "0.4" tower-http = { version = "0.6.6", features = ["cors", "fs", "trace"] }
tower-http = { version = "0.5", features = ["cors", "fs", "trace"] } utoipa = { version = "5.4.0", features = ["axum_extras"] }
hyper = { version = "1.0", features = ["full"] } utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
once_cell = "1.19.0" uzers = "0.12.1"
which = "6.0" which = "8.0.0"
utoipa = { version = "4.0", features = ["axum_extras"] }
utoipa-swagger-ui = { version = "4.0", features = ["axum"] }
[dev-dependencies] [dev-dependencies]
tempfile = "3.3.0" tempfile = "3.3.0"