wuya 发表于 2021-12-23 11:38
Tags:版本号;Cargo.toml
想在代码里面获取当前bin crate的版本号,请问可以通过什么方式获取
Cargo 使用 build.rs 动态生成版本号
感谢!官方详细说明地址:https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates
-- 👇 Freddie Mercury: ``` env!("CARGO_PKG_VERSION")
env!("CARGO_PKG_VERSION")
初步想法是用toml库读取解析Cargo.toml file,然后想要哪个就去取哪个。
评论区
写评论Cargo 使用 build.rs 动态生成版本号
感谢!官方详细说明地址:https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates
--
👇
Freddie Mercury: ``` env!("CARGO_PKG_VERSION")
初步想法是用toml库读取解析Cargo.toml file,然后想要哪个就去取哪个。