avina-api 1.2.1

Rust API server for the LRZ-specific features of the Openstack-based LRZ Compute Cloud.
1
2
3
4
5
6
7
8
fn main() {
    if std::env::var("DOCS_RS")
        .map(|v| v == "1")
        .unwrap_or_default()
    {
        println!("cargo:rustc-env=SQLX_OFFLINE=true");
    }
}