1 Star 3 Fork 1

Sebastian Thiel/gitoxide

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.rs 513 Bytes
一键复制 编辑 原始数据 按行查看 历史
use std::process::Command;
fn main() {
let version = Command::new(if cfg!(windows) { "git.exe" } else { "git" })
.args(["describe", "--match=v*\\.*\\.*"])
.output()
.ok()
.and_then(|out| parse_describe(&out.stdout))
.unwrap_or_else(|| env!("CARGO_PKG_VERSION").into());
println!("cargo:rustc-env=GIX_VERSION={version}");
}
fn parse_describe(input: &[u8]) -> Option<String> {
let input = std::str::from_utf8(input).ok()?;
input.trim().to_owned().into()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Rust
1
https://gitee.com/byronbates/gitoxide.git
git@gitee.com:byronbates/gitoxide.git
byronbates
gitoxide
gitoxide
main

搜索帮助