commonmeta 0.9.4

Library for conversions to/from the Commonmeta scholarly metadata format
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    for path in ["/opt/homebrew/lib", "/usr/local/lib"] {
        if std::path::Path::new(path).join("libduckdb.dylib").exists()
            || std::path::Path::new(path).join("libduckdb.a").exists()
        {
            println!("cargo:rustc-link-search=native={path}");
        }
    }
}