decorum 0.4.0

Total ordering, equivalence, hashing, and constraints for floating-point types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn prelude() {
    println!("cargo:rustc-check-cfg=cfg(nightly)");
}

#[rustversion::not(nightly)]
fn main() {
    self::prelude();
}

#[rustversion::nightly]
fn main() {
    self::prelude();
    println!("cargo:rustc-cfg=nightly");
}