mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 05:52:21 +03:00
27 lines
826 B
TOML
27 lines
826 B
TOML
[package]
|
|
name = "js-sys"
|
|
version = "0.3.2"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
readme = "./README.md"
|
|
categories = ["wasm"]
|
|
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/js-sys"
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
|
documentation = "https://docs.rs/js-sys"
|
|
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.
|
|
"""
|
|
license = "MIT/Apache-2.0"
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
wasm-bindgen = { path = "../..", version = "0.2.25" }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
futures = "0.1.20"
|
|
wasm-bindgen-test = { path = '../test', version = '=0.2.25' }
|
|
wasm-bindgen-futures = { path = '../futures', version = '=0.3.2' }
|