1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[]
= "wasm-bindgen"
= "0.2.39"
= ["The wasm-bindgen Developers"]
= "MIT/Apache-2.0"
# Because only a single `wasm_bindgen` version can be used in a dependency
# graph, pretend we link a native library so that `cargo` will provide better
# error messages than the esoteric linker errors we would otherwise trigger.
= "wasm_bindgen"
= "README.md"
= ["wasm"]
= "https://github.com/rustwasm/wasm-bindgen"
= "https://rustwasm.github.io/"
= "https://docs.rs/wasm-bindgen"
= """
Easy support for interacting between JS and Rust.
"""
[]
= ['serde-serialize']
[]
= false
[]
= ["spans", "std"]
= ["wasm-bindgen-macro/spans"]
= []
= ["serde", "serde_json", "std"]
= []
# Whether or not the `#[wasm_bindgen]` macro is strict and generates an error on
# all unused attributes
= ["wasm-bindgen-macro/strict-macro"]
# This is only for debugging wasm-bindgen! No stability guarantees, so enable
# this at your own peril!
= ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]
[]
= { = "crates/macro", = "=0.2.39" }
= { = "1.0", = true }
= { = "1.0", = true }
# [target.'cfg(target_arch = "wasm32")'.dev-dependencies]
# js-sys = { path = 'crates/js-sys', version = '0.3.16' }
# wasm-bindgen-test = { path = 'crates/test', version = '=0.2.39' }
# serde_derive = "1.0"
# wasm-bindgen-test-crate-a = { path = 'tests/crates/a', version = '0.1' }
# wasm-bindgen-test-crate-b = { path = 'tests/crates/b', version = '0.1' }
#
# [workspace]
# members = [
# "crates/cli",
# "crates/js-sys",
# "crates/macro/ui-tests",
# "crates/test",
# "crates/test/sample",
# "crates/typescript-tests",
# "crates/web-sys",
# "crates/webidl",
# "crates/webidl-tests",
# "examples/add",
# "examples/canvas",
# "examples/char",
# "examples/closures",
# "examples/console_log",
# "examples/dom",
# "examples/duck-typed-interfaces",
# "examples/fetch",
# "examples/guide-supported-types-examples",
# "examples/hello_world",
# "examples/import_js",
# "examples/julia_set",
# "examples/paint",
# "examples/performance",
# "examples/raytrace-parallel",
# "examples/request-animation-frame",
# "examples/todomvc",
# "examples/wasm-in-wasm",
# "examples/wasm2js",
# "examples/webaudio",
# "examples/webgl",
# "examples/without-a-bundler",
# "examples/without-a-bundler-no-modules",
# "tests/no-std",
# ]
# exclude = ['crates/typescript']
#
# [patch.crates-io]
# wasm-bindgen = { path = '.' }
# wasm-bindgen-futures = { path = 'crates/futures' }
# js-sys = { path = 'crates/js-sys' }
# web-sys = { path = 'crates/web-sys' }