canic-wasm-store 0.65.21

Canonical Canic wasm_store canister crate
Documentation
1
2
3
4
5
6
7
8
fn main() {
    println!("cargo:rerun-if-env-changed=CANIC_CONFIG_PATH");

    let config_path =
        std::env::var("CANIC_CONFIG_PATH").unwrap_or_else(|_| "canic.toml".to_string());

    canic::build!(config_path);
}