wasm-bindgen/crates/webidl-tests/Cargo.toml
Alex Crichton a6fe0cefa8 Migrate all crates to the 2018 edition
Most of the CLI crates were already in the 2018 edition, and it turns
out that one of the macro crates was already in the 2018 edition so we
may as well move everything to the 2018 edition!

Always nice to remove those `extern crate` statements nowadays!

This commit also does a `cargo fmt --all` to make sure we're conforming
with style again.
2019-03-26 08:10:53 -07:00

24 lines
415 B
TOML

[package]
name = "webidl-tests"
version = "0.1.0"
authors = ["The wasm-bindgen Developers"]
edition = "2018"
[lib]
test = false
doctest = false
path = 'lib.rs'
[build-dependencies]
wasm-bindgen-webidl = { path = '../webidl' }
env_logger = "0.6"
[dev-dependencies]
js-sys = { path = '../js-sys' }
wasm-bindgen = { path = '../..' }
wasm-bindgen-test = { path = '../test' }
[[test]]
name = 'wasm'
path = 'main.rs'