加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/amethyst/amethyst
克隆/下载
build.rs 1.58 KB
一键复制 编辑 原始数据 按行查看 历史
use std::{
fs::{create_dir_all, read_to_string, remove_file},
path::Path,
};
use dirs_next::config_dir;
use vergen::{self, ConstantsFlags};
fn main() {
let amethyst_home = config_dir().map(|p| p.as_path().join("amethyst"));
if let Some(amethyst_home) = amethyst_home {
if amethyst_home.exists() {
if let Some(true) = check_sentry_allowed(&amethyst_home) {
load_sentry_dsn();
};
} else {
create_dir_all(&amethyst_home).expect("Failed to create amethyst home directory.");
};
}
vergen::generate_cargo_keys(ConstantsFlags::all())
.unwrap_or_else(|e| panic!("Vergen crate failed to generate version information! {}", e));
println!("cargo:rerun-if-changed=build.rs");
}
fn check_sentry_allowed(amethyst_home: &Path) -> Option<bool> {
let sentry_status_file = amethyst_home.join("sentry_status.txt");
if sentry_status_file.exists() {
match read_to_string(&sentry_status_file) {
Ok(result) => {
match result.as_str().trim() {
"true" => Some(true),
"false" => Some(false),
_ => {
remove_file(sentry_status_file)
.expect("Failed to remove invalid sentry file.");
None
}
}
}
Err(_) => None,
}
} else {
None
}
}
fn load_sentry_dsn() {
let sentry_dsn = include_str!(".sentry_dsn.txt");
println!("cargo:rustc-env=SENTRY_DSN={}", sentry_dsn);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化