nominal-api 0.594.0

API bindings for the Nominal platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::env;
use std::path::Path;

fn main() {
        let input = Path::new("scout-service-api.conjure.json").to_path_buf();
        let output = Path::new(&env::var_os("OUT_DIR").unwrap()).join("conjure");

        println!("cargo:rerun-if-changed={}", input.display());
        conjure_codegen::Config::new()
            .strip_prefix("io.nominal".to_string())
            .generate_files(input, output)
            .unwrap();
}