2017-12-15 06:31:01 +03:00
|
|
|
[package]
|
|
|
|
name = "wasm-bindgen"
|
2018-07-27 00:51:20 +03:00
|
|
|
version = "0.2.15"
|
2018-07-19 22:57:04 +03:00
|
|
|
authors = ["The wasm-bindgen Developers"]
|
2018-03-06 07:24:35 +03:00
|
|
|
license = "MIT/Apache-2.0"
|
|
|
|
readme = "README.md"
|
|
|
|
categories = ["wasm"]
|
2018-07-19 22:57:04 +03:00
|
|
|
repository = "https://github.com/rustwasm/wasm-bindgen"
|
|
|
|
homepage = "https://rustwasm.github.io/wasm-bindgen/"
|
2018-03-06 07:24:35 +03:00
|
|
|
documentation = "https://docs.rs/wasm-bindgen"
|
|
|
|
description = """
|
|
|
|
Easy support for interacting between JS and Rust.
|
|
|
|
"""
|
2017-12-15 06:31:01 +03:00
|
|
|
|
2018-02-02 19:10:48 +03:00
|
|
|
[lib]
|
|
|
|
test = false
|
|
|
|
doctest = false
|
|
|
|
|
2018-04-19 23:08:54 +03:00
|
|
|
[features]
|
2018-07-19 22:30:58 +03:00
|
|
|
default = ["spans", "std"]
|
2018-04-25 22:42:13 +03:00
|
|
|
spans = ["wasm-bindgen-macro/spans"]
|
2018-04-19 23:08:54 +03:00
|
|
|
std = []
|
2018-04-27 05:03:46 +03:00
|
|
|
serde-serialize = ["serde", "serde_json", "std"]
|
2018-04-19 23:08:54 +03:00
|
|
|
|
2018-05-26 02:17:54 +03:00
|
|
|
# This is only for debugging wasm-bindgen! No stability guarantees, so enable
|
|
|
|
# this at your own peril!
|
|
|
|
xxx_debug_only_print_generated_code = ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]
|
|
|
|
|
2017-12-15 06:31:01 +03:00
|
|
|
[dependencies]
|
2018-07-27 00:51:20 +03:00
|
|
|
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.15" }
|
2018-04-27 05:03:46 +03:00
|
|
|
serde = { version = "1.0", optional = true }
|
|
|
|
serde_json = { version = "1.0", optional = true }
|
2017-12-15 06:31:01 +03:00
|
|
|
|
2018-08-01 22:19:19 +03:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
|
|
wasm-bindgen-test = { path = 'crates/test', version = '=0.2.15' }
|
|
|
|
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
2018-07-27 00:51:20 +03:00
|
|
|
wasm-bindgen-test-project-builder = { path = "crates/test-project-builder", version = '=0.2.15' }
|
2017-12-19 01:31:01 +03:00
|
|
|
|
|
|
|
[workspace]
|
2018-03-03 07:11:30 +03:00
|
|
|
members = [
|
2018-03-29 18:15:58 +03:00
|
|
|
"crates/cli",
|
2018-07-19 22:30:58 +03:00
|
|
|
"crates/js-sys",
|
2018-07-20 21:47:49 +03:00
|
|
|
"crates/test",
|
2018-08-01 23:52:24 +03:00
|
|
|
"crates/test/sample",
|
2018-06-04 22:44:47 +03:00
|
|
|
"crates/typescript",
|
2018-08-02 01:15:27 +03:00
|
|
|
"crates/macro/ui-tests",
|
2018-07-10 02:35:25 +03:00
|
|
|
"crates/web-sys",
|
2018-07-19 22:30:58 +03:00
|
|
|
"crates/webidl",
|
2018-07-30 21:06:29 +03:00
|
|
|
"crates/webidl-tests",
|
2018-07-25 23:44:14 +03:00
|
|
|
"examples/add",
|
|
|
|
"examples/asm.js",
|
|
|
|
"examples/char",
|
|
|
|
"examples/closures",
|
|
|
|
"examples/comments",
|
2018-03-09 21:25:19 +03:00
|
|
|
"examples/console_log",
|
2018-03-21 18:26:00 +03:00
|
|
|
"examples/dom",
|
2018-07-25 23:44:14 +03:00
|
|
|
"examples/hello_world",
|
|
|
|
"examples/import_js",
|
2018-07-08 18:57:19 +03:00
|
|
|
"examples/julia_set",
|
2018-03-21 20:03:40 +03:00
|
|
|
"examples/math",
|
2018-07-25 23:44:14 +03:00
|
|
|
"examples/no_modules",
|
2018-03-21 20:21:21 +03:00
|
|
|
"examples/performance",
|
2018-07-25 23:44:14 +03:00
|
|
|
"examples/smorgasboard",
|
2018-03-23 03:39:48 +03:00
|
|
|
"examples/wasm-in-wasm",
|
2018-03-03 07:11:30 +03:00
|
|
|
]
|
2018-03-21 01:27:45 +03:00
|
|
|
|
2018-07-20 21:47:49 +03:00
|
|
|
[patch.crates-io]
|
|
|
|
wasm-bindgen = { path = '.' }
|