1[package]
2name = "js-sys"
3version = "0.3.69"
4authors = ["The wasm-bindgen Developers"]
5readme = "./README.md"
6categories = ["wasm"]
7repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys"
8homepage = "https://rustwasm.github.io/wasm-bindgen/"
9documentation = "https://docs.rs/js-sys"
10description = """
11Bindings for all JS global objects and functions in all JS environments like
12Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.
13"""
14license = "MIT OR Apache-2.0"
15edition = "2018"
16rust-version = "1.57"
17
18[lib]
19test = false
20doctest = false
21
22[dependencies]
23wasm-bindgen = { path = "../..", version = "0.2.92" }
24
25[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
26wasm-bindgen-test = { path = '../test', version = '=0.3.42' }
27wasm-bindgen-futures = { path = '../futures', version = '0.4.42' }
28web-sys = { path = "../web-sys", version = "0.3.69", features = ["Headers", "Response", "ResponseInit"] }
29