mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-24 14:42:35 +03:00
98008b9e77
At the same time, also add a `publish.rs` script to ease our publishing woes.
25 lines
615 B
TOML
25 lines
615 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.2"
|
|
wasm-bindgen-webidl = { path = "../webidl", version = "=0.2.17" }
|
|
sourcefile = "0.1"
|
|
|
|
[dependencies]
|
|
wasm-bindgen = { path = "../..", version = "0.2.18" }
|
|
js-sys = { path = '../js-sys', version = '0.2.3' }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
futures = "0.1"
|
|
wasm-bindgen-test = { path = '../test', version = '0.2.18' }
|
|
wasm-bindgen-futures = { path = '../futures', version = '0.2.18' }
|