Init
Build and Publish / Build and Publish Docker Image (push) Successful in 5m0s

This commit is contained in:
Ultradesu
2026-06-29 15:50:25 +03:00
commit e5aacc9b41
24 changed files with 11050 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
fn main() {
println!(
"cargo::rustc-env=AMNEZIA_FELLOW_TARGET={}",
std::env::var("TARGET").unwrap()
);
let rustc = std::env::var("RUSTC").unwrap_or_else(|_| "rustc".into());
let output = std::process::Command::new(rustc)
.arg("--version")
.output()
.expect("failed to run rustc --version");
let version = String::from_utf8_lossy(&output.stdout);
println!(
"cargo::rustc-env=AMNEZIA_FELLOW_RUSTC_VERSION={}",
version.trim()
);
}