sqlite 0.19.6

The package provides an interface to SQLite.
Documentation
use std::env;

fn main() {
    if let Ok(features) = env::var("DEP_SQLITE3_FEATURES") {
        for feature in features.split(' ') {
            println!(r#"cargo:rustc-cfg=feature="{}""#, feature);
        }
    }
}