wasset 0.1.2

Embed external assets into WASM modules.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Marks the crate as being compiled with unstable features enabled.
#[rustversion::nightly]
fn main() {
    println!("cargo::rustc-check-cfg=cfg(unstable)");
    println!("cargo:rustc-cfg=unstable");
}

/// Marks the crate as being compiled without unstable features.
#[rustversion::not(nightly)]
fn main() {
    println!("cargo::rustc-check-cfg=cfg(unstable)");
}