[package]
edition = "2021"
name = "tpt-appfront-core"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "UITree AST and the reactive Signal system for TPT AppFront: virtual scroll, styling utilities, devtools inspector, and static-tree caching, shared by every backend."
readme = "README.md"
keywords = [
"ui",
"reactive",
"signal",
"gui",
"wasm",
]
categories = [
"gui",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tpt-solutions/tpt-appfront"
[lib]
name = "tpt_appfront_core"
path = "src/lib.rs"
[[test]]
name = "component_macro"
path = "tests/component_macro.rs"
[[test]]
name = "generate_snippets_compile"
path = "tests/generate_snippets_compile.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "view_macro"
path = "tests/view_macro.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tpt-appfront-macros]
version = "0.1"
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
"Window",
"Storage",
]