mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-23 12:02:40 +03:00
118 lines
3.2 KiB
TOML
118 lines
3.2 KiB
TOML
[package]
|
|
authors = ["The wasm-bindgen Developers"]
|
|
categories = ["wasm"]
|
|
description = """
|
|
Easy support for interacting between JS and Rust.
|
|
"""
|
|
documentation = "https://docs.rs/wasm-bindgen"
|
|
edition = "2021"
|
|
homepage = "https://rustwasm.github.io/"
|
|
include = ["/build.rs", "/LICENSE-*", "/src"]
|
|
license = "MIT OR Apache-2.0"
|
|
name = "wasm-bindgen"
|
|
readme = "README.md"
|
|
repository = "https://github.com/rustwasm/wasm-bindgen"
|
|
rust-version = "1.57"
|
|
version = "0.2.95"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["serde-serialize"]
|
|
|
|
[lib]
|
|
test = false
|
|
|
|
[features]
|
|
default = ["spans", "std"]
|
|
enable-interning = ["std"]
|
|
serde-serialize = ["serde", "serde_json", "std"]
|
|
spans = ["wasm-bindgen-macro/spans"]
|
|
std = []
|
|
|
|
# Whether or not the `#[wasm_bindgen]` macro is strict and generates an error on
|
|
# all unused attributes
|
|
strict-macro = ["wasm-bindgen-macro/strict-macro"]
|
|
|
|
# Enables gg-alloc as system allocator when using wasm-bindgen-test to check that large pointers
|
|
# are handled correctly
|
|
gg-alloc = ["wasm-bindgen-test/gg-alloc"]
|
|
|
|
# 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"]
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0.0"
|
|
once_cell = "1.12"
|
|
serde = { version = "1.0", optional = true }
|
|
serde_json = { version = "1.0", optional = true }
|
|
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.95" }
|
|
|
|
[dev-dependencies]
|
|
wasm-bindgen-test = { path = 'crates/test' }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
js-sys = { path = 'crates/js-sys' }
|
|
serde_derive = "1.0"
|
|
wasm-bindgen-futures = { path = 'crates/futures' }
|
|
wasm-bindgen-test-crate-a = { path = 'tests/crates/a' }
|
|
wasm-bindgen-test-crate-b = { path = 'tests/crates/b' }
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasm_bindgen_unstable_test_coverage)'] }
|
|
|
|
[workspace]
|
|
exclude = ["crates/msrv"]
|
|
members = [
|
|
"benchmarks",
|
|
"crates/cli",
|
|
"crates/js-sys",
|
|
"crates/test",
|
|
"crates/test/sample",
|
|
"crates/example-tests",
|
|
"crates/typescript-tests",
|
|
"crates/web-sys",
|
|
"crates/webidl",
|
|
"crates/webidl-tests",
|
|
"examples/add",
|
|
"examples/canvas",
|
|
"examples/char",
|
|
"examples/closures",
|
|
"examples/console_log",
|
|
"examples/deno",
|
|
"examples/dom",
|
|
"examples/duck-typed-interfaces",
|
|
"examples/explicit-resource-management",
|
|
"examples/fetch",
|
|
"examples/guide-supported-types-examples",
|
|
"examples/hello_world",
|
|
"examples/import_js/crate",
|
|
"examples/julia_set",
|
|
"examples/paint",
|
|
"examples/performance",
|
|
"examples/raytrace-parallel",
|
|
"examples/request-animation-frame",
|
|
"examples/todomvc",
|
|
"examples/wasm-audio-worklet",
|
|
"examples/wasm-in-wasm",
|
|
"examples/wasm-in-wasm-imports",
|
|
"examples/wasm-in-web-worker",
|
|
"examples/wasm2js",
|
|
"examples/weather_report",
|
|
"examples/webaudio",
|
|
"examples/webgl",
|
|
"examples/webrtc_datachannel",
|
|
"examples/websockets",
|
|
"examples/webxr",
|
|
"examples/without-a-bundler",
|
|
"examples/without-a-bundler-no-modules",
|
|
"examples/synchronous-instantiation",
|
|
"tests/no-std",
|
|
]
|
|
resolver = "2"
|
|
|
|
[patch.crates-io]
|
|
js-sys = { path = 'crates/js-sys' }
|
|
wasm-bindgen = { path = '.' }
|
|
wasm-bindgen-futures = { path = 'crates/futures' }
|
|
web-sys = { path = 'crates/web-sys' }
|