2018-07-19 22:30:58 +03:00
|
|
|
[package]
|
|
|
|
name = "js-sys"
|
2019-08-19 14:21:27 +03:00
|
|
|
version = "0.3.27"
|
2018-07-27 00:51:20 +03:00
|
|
|
authors = ["The wasm-bindgen Developers"]
|
2018-07-19 22:30:58 +03:00
|
|
|
readme = "./README.md"
|
|
|
|
categories = ["wasm"]
|
|
|
|
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys"
|
|
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
2018-07-27 01:06:24 +03:00
|
|
|
documentation = "https://docs.rs/js-sys"
|
2018-07-19 22:30:58 +03:00
|
|
|
description = """
|
|
|
|
Bindings for all JS global objects and functions in all JS environments like
|
|
|
|
Node.js and browsers, built on `#[wasm_bindgen]` using the `wasm-bindgen` crate.
|
|
|
|
"""
|
2018-07-27 01:06:24 +03:00
|
|
|
license = "MIT/Apache-2.0"
|
2019-03-26 18:00:16 +03:00
|
|
|
edition = "2018"
|
2018-07-19 22:30:58 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[dependencies]
|
2019-08-19 14:21:27 +03:00
|
|
|
wasm-bindgen = { path = "../..", version = "0.2.50" }
|
2018-07-19 22:30:58 +03:00
|
|
|
|
2018-07-20 21:47:49 +03:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
2018-08-16 21:40:19 +03:00
|
|
|
futures = "0.1.20"
|
2019-08-19 14:21:27 +03:00
|
|
|
wasm-bindgen-test = { path = '../test', version = '=0.2.50' }
|
|
|
|
wasm-bindgen-futures = { path = '../futures', version = '=0.3.27' }
|