build_assert 0.0.1

Asserts const generic expressions at build-time.
Documentation
1
2
3
4
5
fn main() {
  if let Ok(profile) = std::env::var("PROFILE") {
    println!("cargo:rustc-cfg=build={:?}", profile);
  }
}