Add a script to build every possible feature combination.

This commit is contained in:
Tom Alexander
2023-12-26 20:51:14 -05:00
parent 2911fce7cc
commit 17b81c7c72
2 changed files with 47 additions and 2 deletions

View File

@@ -1,5 +1,3 @@
#![no_main]
use wasm::wasm_parse_org;
use wasm_bindgen::prelude::wasm_bindgen;
@@ -11,3 +9,7 @@ pub fn parse_org(org_contents: &str) -> wasm_bindgen::JsValue {
let rust_parsed = wasm_parse_org(org_contents);
serde_wasm_bindgen::to_value(&rust_parsed).unwrap()
}
fn main() -> Result<(), Box<dyn std::error::Error>> {
Ok(())
}