mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-15 21:02:10 +03:00
56400c3738
This commit updates all examples to not use `path` dependencies but rather use versioned dependencies like would typically be found in the wild. This should hopefully make the examples more copy-pastable and less alien to onlookers! The development of the examples remains the same where they continue to use the `wasm-bindgen`, `js-sys`, `web-sys`, etc from in-tree. The workspace-level `[patch]` section ensures that they use the in-tree versions instead of the crates.io versions.
22 lines
314 B
TOML
22 lines
314 B
TOML
[package]
|
|
name = "closures"
|
|
version = "0.1.0"
|
|
authors = ["The wasm-bindgen Developers"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2.27"
|
|
js-sys = "0.3.4"
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = [
|
|
'CssStyleDeclaration',
|
|
'Document',
|
|
'Element',
|
|
'HtmlElement',
|
|
'Window',
|
|
]
|