libduckdb-sys-queryscript 0.7.4

Native bindings to the libduckdb library, C API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use openssl_src;
use std::path::PathBuf;

pub fn get_openssl(_target: &str) -> (Vec<PathBuf>, PathBuf) {
    let artifacts = openssl_src::Build::new().build();
    println!("cargo:vendored=1");
    println!("cargo:root={}", artifacts.lib_dir().parent().unwrap().display());

    (
        vec![artifacts.lib_dir().to_path_buf()],
        artifacts.include_dir().to_path_buf(),
    )
}