mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-19 11:40:51 +00:00
Migrate most `web-sys` tests to the new `wasm_bindgen_test` framework with the new headless browser capabilities!
26 lines
688 B
TOML
26 lines
688 B
TOML
[package]
|
|
name = "web-sys"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
readme = "./README.md"
|
|
|
|
[lib]
|
|
doctest = false
|
|
test = false
|
|
|
|
[build-dependencies]
|
|
env_logger = "0.5.10"
|
|
failure = "0.1"
|
|
wasm-bindgen-webidl = { path = "../webidl", version = "=0.2.15" }
|
|
sourcefile = "0.1"
|
|
|
|
[dependencies]
|
|
wasm-bindgen = { path = "../..", version = "=0.2.15" }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
|
wasm-bindgen-test-project-builder = { path = '../test-project-builder', version = '=0.2.15' }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
wasm-bindgen-test = { path = '../test', version = '=0.2.15' }
|
|
js-sys = { path = '../js-sys', version = '0.2.0' }
|