mirror of
https://github.com/yewstack/yew.git
synced 2026-01-25 16:43:15 +00:00
* Remove `web_sys` re-export Removes re-exporting the `web_sys` dependency from the yew crate and removes some `web_sys` features that were only enabled for re-exporting. * re-export events through yew::events
17 lines
302 B
TOML
17 lines
302 B
TOML
[package]
|
|
name = "js_callback"
|
|
version = "0.1.0"
|
|
authors = ["Scott Steele <scottlsteele@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
wasm-bindgen = "0.2"
|
|
yew = { path = "../../packages/yew" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3"
|
|
features = [
|
|
"HtmlTextAreaElement",
|
|
]
|