[package]
name = "yew"
version = "0.19.3"
edition = "2018"
authors = [
"Denis Kolodin <deniskolodin@gmail.com>",
"Justin Starry <justin@yew.rs>",
]
repository = "https://github.com/yewstack/yew"
homepage = "https://github.com/yewstack/yew"
documentation = "https://docs.rs/yew/"
license = "MIT OR Apache-2.0"
keywords = ["web", "webasm", "javascript"]
categories = ["gui", "wasm", "web-programming"]
description = "A framework for making client-side single-page apps"
readme = "../../README.md"
[dependencies]
console_error_panic_hook = "0.1"
gloo = "0.4"
gloo-utils = "0.1.0"
indexmap = { version = "1", features = ["std"] }
js-sys = "0.3"
slab = "0.4"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
yew-macro = { version = "^0.19.0", path = "../yew-macro" }
scoped-tls-hkt = "0.1"
[dependencies.web-sys]
version = "0.3"
features = [
"AnimationEvent",
"Document",
"DragEvent",
"Element",
"ErrorEvent",
"Event",
"EventInit",
"EventTarget",
"FocusEvent",
"HtmlElement",
"HtmlInputElement",
"HtmlTextAreaElement",
"InputEvent",
"InputEventInit",
"KeyboardEvent",
"Location",
"MouseEvent",
"Node",
"PointerEvent",
"ProgressEvent",
"Text",
"TouchEvent",
"TransitionEvent",
"UiEvent",
"WheelEvent",
"Window",
]
[dev-dependencies]
easybench-wasm = "0.2"
wasm-bindgen-test = "0.3"
[features]
doc_test = []
wasm_test = []
wasm_bench = []
[package.metadata.docs.rs]
features = ["doc_test"]