flake.lock: bump, Cargo.toml: update inputs

This commit is contained in:
2025-11-09 16:06:08 +09:00
parent 92f6561190
commit 1ee79a5b47
4 changed files with 391 additions and 450 deletions

793
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.98"
anyhow = "1.0.100"
async-bincode = "0.8.0"
bincode = "2.0.1"
clap = { version = "4.5.41", features = ["derive"] }
clap-verbosity-flag = "3.0.3"
clap_complete = "4.5.55"
clap = { version = "4.5.51", features = ["derive"] }
clap-verbosity-flag = "3.0.4"
clap_complete = "4.5.60"
derive_more = { version = "2.0.1", features = ["display", "error"] }
dialoguer = "0.11.0"
dialoguer = "0.12.0"
env_logger = "0.11.8"
futures = "0.3.31"
futures-util = "0.3.31"
indoc = "2.0.6"
indoc = "2.0.7"
itertools = "0.14.0"
log = "0.4.27"
log = "0.4.28"
nix = { version = "0.30.1", features = ["fs", "process", "socket", "user"] }
prettytable = "0.10.0"
rand = "0.9.1"
rand = "0.9.2"
ratatui = { version = "0.29.0", optional = true }
sd-notify = "0.4.5"
serde = "1.0.219"
serde_json = { version = "1.0.140", features = ["preserve_order"] }
serde = "1.0.228"
serde_json = { version = "1.0.145", 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 = { version = "1.48.0", features = ["rt", "macros"] }
tokio-serde = { version = "0.9.0", features = ["bincode"] }
tokio-stream = "0.1.17"
tokio-util = { version = "0.7.15", features = ["codec"] }
toml = "0.8.23"
uuid = { version = "1.17.0", features = ["v4"] }
tokio-util = { version = "0.7.17", features = ["codec"] }
toml = "0.9.8"
uuid = { version = "1.18.1", features = ["v4"] }
[features]
default = ["mysql-admutils-compatibility"]
@@ -50,7 +50,7 @@ lto = true
codegen-units = 1
[build-dependencies]
anyhow = "1.0.98"
anyhow = "1.0.100"
[dev-dependencies]
regex = "1.11.1"
regex = "1.12.2"

12
flake.lock generated
View File

@@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1751984180,
"narHash": "sha256-LwWRsENAZJKUdD3SpLluwDmdXY9F45ZEgCb0X+xgOL0=",
"lastModified": 1762363567,
"narHash": "sha256-YRqMDEtSMbitIMj+JLpheSz0pwEr0Rmy5mC7myl17xs=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "9807714d6944a957c2e036f84b0ff8caf9930bc0",
"rev": "ae814fd3904b621d8ab97418f1d0f2eb0d3716f4",
"type": "github"
},
"original": {
@@ -29,11 +29,11 @@
]
},
"locked": {
"lastModified": 1752201818,
"narHash": "sha256-d8KczaVT8WFEZdWg//tMAbv8EDyn2YTWcJvSY8gqKBU=",
"lastModified": 1762655942,
"narHash": "sha256-hOM12KcQNQALrhB9w6KJmV5hPpm3GA763HRe9o7JUiI=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "bd8f8329780b348fedcd37b53dbbee48c08c496d",
"rev": "6ac961b02d4235572692241e333d0470637f5492",
"type": "github"
},
"original": {

View File

@@ -45,7 +45,7 @@
devShell = forAllSystems (system: pkgs: toolchain: pkgs.mkShell {
nativeBuildInputs = with pkgs; [
toolchain
mysql-client
mariadb.client
cargo-nextest
cargo-edit
cargo-deny
@@ -57,7 +57,7 @@
overlays = {
default = self.overlays.mysqladm-rs;
mysqladm-rs = final: prev: {
inherit (self.packages.${prev.system}) mysqladm-rs;
inherit (self.packages.${prev.stdenv.hostPlatform.system}) mysqladm-rs;
};
};