chore: sync project state and current artifacts

This commit is contained in:
Sepehr
2026-02-22 23:27:31 +01:00
parent 1b6415776e
commit dd77089b22
232 changed files with 37056 additions and 4296 deletions

View File

@@ -1,5 +1,5 @@
//! Build script for entropyk-fluids crate.
//!
//!
//! This build script can optionally compile CoolProp C++ library when the
//! "coolprop" feature is enabled.
@@ -7,12 +7,12 @@ use std::env;
fn main() {
let coolprop_enabled = env::var("CARGO_FEATURE_COOLPROP").is_ok();
if coolprop_enabled {
println!("cargo:rustc-link-lib=dylib=coolprop");
println!("cargo:rerun-if-changed=build.rs");
}
// Tell Cargo to rerun this script if any source files change
println!("cargo:rerun-if-changed=build.rs");
}