mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-17 10:40:50 +00:00
* Bump to 0.2.12 * Update all version numbers and deps * Update all listed authors to `["The wasm-bindgen Developers"]` * Update `repository` links to specific paths for each crate * Update `homepage` links to the online book * Update all links away from `alexcrichton/wasm-bindgen` * Add `#[doc]` directives for HTML URLs * Update more version requirements * Fill out CHANGELOG
24 lines
704 B
TOML
24 lines
704 B
TOML
[package]
|
|
name = "js-sys"
|
|
version = "0.2.12"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
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/wasm-bindgen"
|
|
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.
|
|
"""
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
wasm-bindgen = { path = "../..", version = "0.2.12" }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test-project-builder = { path = "../test-project-builder" }
|