1 2 3 4 5 6 7 8 9 10 11
//! WASM bindings: Plonky3-derived STARK component metadata. #![allow(missing_docs)] use wasm_bindgen::prelude::*; /// Crate version string for integration checks. #[wasm_bindgen(js_name = plonkyPackageVersion)] pub fn plonky_package_version() -> JsValue { JsValue::from_str(env!("CARGO_PKG_VERSION")) }