mysql 15.1.0

Mysql client library implemented in rust
Documentation
1
2
3
4
5
6
7
8
9
10
use std::env;

fn main() {
    let names = ["CARGO_CFG_TARGET_OS", "CARGO_CFG_TARGET_ARCH"];
    for name in &names {
        let value =
            env::var(name).expect(&format!("Could not get the environment variable {}", name));
        println!("cargo:rustc-env={}={}", name, value);
    }
}