proptest-arbitrary 0.2.2

The Arbitrary trait for proptest and implementations for the standard library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//!
//! This build script detects minimum version and sets
//! flags that are actionable with #[cfg(flag)].
//!

extern crate version_check;

fn main() {
    println!("cargo:rerun-if-changed=build.rs");
    if let Some((true, _)) = version_check::is_min_version("1.24.0") {
        println!("cargo:rustc-cfg=MIN_VER_1_24_0");
    }
}