slash-formatter 3.1.6

This crate provides functions to deal with slashes and backslashes in strings.
Documentation
1
2
3
4
5
6
7
8
fn main() {
    if cfg!(windows) {
        println!("cargo:rustc-cfg=from_windows");
    }
    if cfg!(unix) {
        println!("cargo:rustc-cfg=from_unix");
    }
}