mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 23:14:12 +03:00
53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[package]
|
|
name = "wasm-bindgen"
|
|
version = "0.2.8"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
categories = ["wasm"]
|
|
repository = "https://github.com/alexcrichton/wasm-bindgen"
|
|
homepage = "https://github.com/alexcrichton/wasm-bindgen"
|
|
documentation = "https://docs.rs/wasm-bindgen"
|
|
description = """
|
|
Easy support for interacting between JS and Rust.
|
|
"""
|
|
|
|
[lib]
|
|
test = false
|
|
doctest = false
|
|
|
|
[features]
|
|
default = ["spans", "std"]
|
|
spans = ["wasm-bindgen-macro/spans"]
|
|
std = []
|
|
serde-serialize = ["serde", "serde_json", "std"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.8" }
|
|
serde = { version = "1.0", optional = true }
|
|
serde_json = { version = "1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-cli-support = { path = "crates/cli-support", version = '=0.2.8' }
|
|
|
|
[workspace]
|
|
members = [
|
|
"crates/cli",
|
|
"examples/hello_world",
|
|
"examples/smorgasboard",
|
|
"examples/console_log",
|
|
"examples/dom",
|
|
"examples/math",
|
|
"examples/performance",
|
|
"examples/wasm-in-wasm",
|
|
"examples/closures",
|
|
"examples/no_modules",
|
|
"examples/add",
|
|
"examples/asm.js",
|
|
]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = 's'
|
|
panic = 'abort'
|