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

12
flake.lock generated
View File

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

View File

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