hyperreal 0.13.0

Exact rational and computable real arithmetic in Rust
Documentation
1
2
3
4
5
6
7
8
9
#[test]
fn readme_version_matches_crate_version() {
    let readme = include_str!("../README.md");
    let expected = format!("Version `{}`", env!("CARGO_PKG_VERSION"));
    assert!(
        readme.contains(&expected),
        "README.md should mention the current crate version as {expected}"
    );
}