mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-17 06:21:36 +03:00
c8a352189b
This commit implements a system that will assert that all `#[wasm_bindgen]` attributes are actually used during compilation. This should help ensure that we don't sneak in stray attributes that don't actually end up having any meaning, and hopefully make it a bit easier to learn `#[wasm_bindgen]`!
16 lines
269 B
TOML
16 lines
269 B
TOML
[package]
|
|
name = "ui-tests"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
|
|
[lib]
|
|
path = "test.rs"
|
|
doctest = false
|
|
harness = false
|
|
|
|
[dependencies]
|
|
wasm-bindgen = { path = "../../..", features = ["strict-macro"] }
|
|
|
|
[dev-dependencies]
|
|
compiletest_rs = "0.3"
|