[package]
edition = "2021"
name = "fui-rs"
version = "0.2.4"
build = false
include = [
"/src/**/*.rs",
"/tests/**/*.rs",
"/Cargo.toml",
"/Cargo.lock",
"/README.md",
"/LICENSE.md",
"/LICENSES/AGPL-3.0-only.md",
"/COMMERCIAL.md",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Retained-mode Rust UI SDK for EffinDOM"
homepage = "https://effindom.dev"
documentation = "https://docs.rs/fui-rs"
readme = "README.md"
keywords = [
"effindom",
"ui",
"gui",
"wasm",
"retained-mode",
]
categories = [
"gui",
"wasm",
]
license-file = "LICENSE.md"
repository = "https://github.com/zion-sati/fui-rs"
[package.metadata.effindom]
runtime-version = "0.2.3"
core-abi = 2
ui-abi = 1
[features]
default = []
native-runtime = []
worker-runtime = []
[lib]
name = "fui"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "bridge_callbacks_tests"
path = "tests/bridge_callbacks_tests.rs"
[[test]]
name = "drawing_lifetime_tests"
path = "tests/drawing_lifetime_tests.rs"
[[test]]
name = "event_integration_tests"
path = "tests/event_integration_tests.rs"
[[test]]
name = "framework_host_services_tests"
path = "tests/framework_host_services_tests.rs"
[[test]]
name = "public_api_parity_tests"
path = "tests/public_api_parity_tests.rs"
[[test]]
name = "scroll_and_selection_tests"
path = "tests/scroll_and_selection_tests.rs"
[[test]]
name = "signal_tests"
path = "tests/signal_tests.rs"
[dependencies]