strcursor 0.2.5

Provides a string cursor type for seeking through a string whilst respecting grapheme cluster and code point boundaries.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate rustc_version;
use rustc_version::{version_matches};

fn main() {
    println!("cargo:rerun-if-changed=build.rs");

    if version_matches("1.4.0") {
        println!("cargo:rustc-cfg=has_string_into_boxed_string");
    }
}