chore(release): prepare public source release

This commit is contained in:
MercuryToolbox Release
2026-07-18 15:33:01 +08:00
commit 34d6a57f38
510 changed files with 163501 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
//! Build script for `sqlshape`.
fn main() {
let target_family = std::env::var("CARGO_CFG_TARGET_FAMILY").unwrap_or_default();
let target = std::env::var("TARGET").unwrap_or_default();
if target_family.split(',').any(|family| family == "windows") || target.contains("windows") {
println!("cargo:rustc-link-lib=Rstrtmgr");
println!("cargo:rustc-link-arg-tests=Rstrtmgr.lib");
}
}