mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-22 21:20:52 +00:00
* No need for version deps in dev-deps These are all internal so we can drop the version * Remove wasm-bindgen-cli's parity-wasm dep No longer needed * Tweak file hierarchy in webidl tests Use Cargo's conventions to avoid the need to define `[[test]]` sections * Remove unused imports
13 lines
243 B
Rust
13 lines
243 B
Rust
extern crate diff;
|
|
extern crate env_logger;
|
|
extern crate proc_macro2;
|
|
extern crate syn;
|
|
extern crate wasm_bindgen_backend as backend;
|
|
extern crate wasm_bindgen_webidl as wb_webidl;
|
|
|
|
#[macro_use]
|
|
mod util;
|
|
use util::*;
|
|
|
|
assert_compile!(Event);
|