client: embed dependency list in long --version output
Some checks failed
Build and test / check-license (push) Successful in 1m16s
Build and test / check (push) Successful in 2m47s
Build and test / test (push) Successful in 4m6s
Build and test / docs (push) Failing after 7m11s
Build and test / build (push) Failing after 3m5s

This commit is contained in:
2025-12-23 11:59:26 +09:00
parent e28da90e00
commit ba8ffd0e78
4 changed files with 225 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ const fn long_version() -> &'static str {
}
};
}
const_format::concatcp!(
crate_version!(),
"\n",
@@ -53,6 +54,9 @@ const fn long_version() -> &'static str {
"mysql-admutils-compatibility"
),
"\n",
"\n",
"[dependencies]\n",
const_format::str_replace!(env!("DEPENDENCY_LIST"), ";", "\n")
)
}