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