rocket 0.5.1

Web framework with a focus on usability, security, extensibility, and speed.
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    if let Some((version, channel, _)) = version_check::triple() {
        if channel.supports_features() {
            println!("cargo:rustc-cfg=nightly");
        }

        if version.at_least("1.67") && version.at_most("1.68.2") {
            println!("cargo:rustc-cfg=broken_fmt");
        }
    }
}