Cargo.toml: update deps, flake.nix: add cargo-edit, bump nixpkgs
Some checks failed
Build / build (push) Failing after 1m25s
Build / check (push) Failing after 6m32s
Build / docs (push) Failing after 7m37s

This commit is contained in:
2025-07-11 19:09:43 +02:00
parent c2d22ee7f8
commit f212ef1bfb
4 changed files with 401 additions and 257 deletions

613
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,35 +4,35 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
anyhow = "1.0.95" anyhow = "1.0.98"
async-bincode = "0.8.0" async-bincode = "0.8.0"
bincode = "2.0.1" bincode = "2.0.1"
clap = { version = "4.5.26", features = ["derive"] } clap = { version = "4.5.41", features = ["derive"] }
clap-verbosity-flag = "3.0.2" clap-verbosity-flag = "3.0.3"
clap_complete = "4.5.42" clap_complete = "4.5.55"
derive_more = { version = "2.0.1", features = ["display", "error"] } derive_more = { version = "2.0.1", features = ["display", "error"] }
dialoguer = "0.11.0" dialoguer = "0.11.0"
env_logger = "0.11.6" env_logger = "0.11.8"
futures = "0.3.31" futures = "0.3.31"
futures-util = "0.3.31" futures-util = "0.3.31"
indoc = "2.0.5" indoc = "2.0.6"
itertools = "0.14.0" itertools = "0.14.0"
log = "0.4.25" log = "0.4.27"
nix = { version = "0.30.1", features = ["fs", "process", "socket", "user"] } nix = { version = "0.30.1", features = ["fs", "process", "socket", "user"] }
prettytable = "0.10.0" prettytable = "0.10.0"
rand = "0.9.1" rand = "0.9.1"
ratatui = { version = "0.29.0", optional = true } ratatui = { version = "0.29.0", optional = true }
sd-notify = "0.4.5" sd-notify = "0.4.5"
serde = "1.0.217" serde = "1.0.219"
serde_json = { version = "1.0.135", features = ["preserve_order"] } serde_json = { version = "1.0.140", features = ["preserve_order"] }
sqlx = { version = "0.8.3", features = ["runtime-tokio", "mysql", "tls-rustls"] } sqlx = { version = "0.8.6", features = ["runtime-tokio", "mysql", "tls-rustls"] }
systemd-journal-logger = "2.2.0" systemd-journal-logger = "2.2.2"
tokio = { version = "1.43.0", features = ["rt", "macros"] } tokio = { version = "1.46.1", features = ["rt", "macros"] }
tokio-serde = { version = "0.9.0", features = ["bincode"] } tokio-serde = { version = "0.9.0", features = ["bincode"] }
tokio-stream = "0.1.17" tokio-stream = "0.1.17"
tokio-util = { version = "0.7.13", features = ["codec"] } tokio-util = { version = "0.7.15", features = ["codec"] }
toml = "0.8.19" toml = "0.8.23"
uuid = { version = "1.12.0", features = ["v4"] } uuid = { version = "1.17.0", features = ["v4"] }
[features] [features]
default = ["mysql-admutils-compatibility"] default = ["mysql-admutils-compatibility"]
@@ -50,7 +50,7 @@ lto = true
codegen-units = 1 codegen-units = 1
[build-dependencies] [build-dependencies]
anyhow = "1.0.95" anyhow = "1.0.98"
[dev-dependencies] [dev-dependencies]
regex = "1.11.1" regex = "1.11.1"

12
flake.lock generated
View File

@@ -2,11 +2,11 @@
"nodes": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1746461020, "lastModified": 1751984180,
"narHash": "sha256-7+pG1I9jvxNlmln4YgnlW4o+w0TZX24k688mibiFDUE=", "narHash": "sha256-LwWRsENAZJKUdD3SpLluwDmdXY9F45ZEgCb0X+xgOL0=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "3730d8a308f94996a9ba7c7138ede69c1b9ac4ae", "rev": "9807714d6944a957c2e036f84b0ff8caf9930bc0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -29,11 +29,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1746585402, "lastModified": 1752201818,
"narHash": "sha256-Pf+ufu6bYNA1+KQKHnGMNEfTwpD9ZIcAeLoE2yPWIP0=", "narHash": "sha256-d8KczaVT8WFEZdWg//tMAbv8EDyn2YTWcJvSY8gqKBU=",
"owner": "oxalica", "owner": "oxalica",
"repo": "rust-overlay", "repo": "rust-overlay",
"rev": "72dd969389583664f87aa348b3458f2813693617", "rev": "bd8f8329780b348fedcd37b53dbbee48c08c496d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -47,6 +47,7 @@
toolchain toolchain
mysql-client mysql-client
cargo-nextest cargo-nextest
cargo-edit
cargo-deny cargo-deny
]; ];