#tree-sitter #wasm-build #build #wasm #build-script

build tree-sitter-wasm-build-tool

A crate to easily allow tree-sitter parsers to compile to Rust’s wasm32-unknown-unknown target

4 releases

0.2.2 Sep 20, 2023
0.2.1 Sep 20, 2023
0.2.0 Aug 1, 2023
0.1.0 Mar 28, 2023

#286 in Build Utils

Download history 35/week @ 2024-02-26 5/week @ 2024-03-04 26/week @ 2024-03-11 14/week @ 2024-03-18 3/week @ 2024-03-25 30/week @ 2024-04-01 3/week @ 2024-04-08 13/week @ 2024-04-15

52 downloads per month
Used in 4 crates (3 directly)

GPL-3.0-only

16KB

tree-sitter-wasm-build-tool

A crate to easily allow tree-sitter parsers to compile to Rust's wasm32-unknown-unknown target.

Currently, this only works with parsers that do not make use of an external C++ scanner.

It is meant to be used in build scripts, typically only if some wasm or c2rust feature is enabled.

For example:

let src_dir = std::path::Path::new("src");
let mut c_config = cc::Build::new();
c_config.include(src_dir);
c_config
    .flag("-Wno-unused-parameter")
    .flag("-Wno-unused-but-set-variable")
    .flag("-Wno-trigraphs");
let parser_path = src_dir.join("parser.c");
c_config.file(&parser_path);

#[cfg(feature = "c2rust")]
tree_sitter_wasm_build_tool::add_wasm_headers(&mut c_config).unwrap();

c_config.compile("parser");
println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap());

The only public function is add_wasm_headers. See its documentation for some more information.

Dependencies

~175KB