[package]
edition = "2021"
rust-version = "1.77"
name = "rue-core"
version = "0.1.0"
build = false
exclude = ["pkg/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Vue 3-like reactive UI framework for building web applications in Rust/WASM"
homepage = "https://github.com/pedrosoares/rue"
documentation = "https://docs.rs/rue-core"
readme = "README.md"
keywords = [
"vue",
"reactive",
"ui",
"wasm",
"webassembly",
]
categories = [
"gui",
"wasm",
"web-programming",
]
license = "MIT"
repository = "https://github.com/pedrosoares/rue"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg=web_sys_unstable_apis"]
[lib]
name = "rue_core"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.console_error_panic_hook]
version = "0.1"
[dependencies.js-sys]
version = "0.3"
[dependencies.wasm-bindgen]
version = "0.2.100"
[dependencies.web-sys]
version = "0.3"
features = [
"console",
"Document",
"Element",
"HtmlElement",
"Node",
"Text",
"Event",
"MouseEvent",
"KeyboardEvent",
"HtmlInputElement",
"Window",
"DomTokenList",
"EventListener",
"EventTarget",
"Location",
"Navigator",
"NodeList",
"HtmlCollection",
"Comment",
]
[dev-dependencies.wasm-bindgen-test]
version = "0.3"