[package]
edition = "2024"
name = "freya-core"
version = "0.4.0"
authors = ["Marc EspĂn <mespinsanz@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reactivity runtime, tree management, accessibility integration, rendering pipeline and more, for Freya"
homepage = "https://freyaui.dev/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/marc2332/freya"
[features]
debug-integrity = []
devtools = ["serde"]
hotpath = [
"hotpath/hotpath",
"ragnarok/hotpath",
]
hotreload = [
"dep:subsecond",
"dep:dioxus-devtools",
]
serde = ["dep:serde"]
test = []
[lib]
name = "freya_core"
path = "src/lib.rs"
[[test]]
name = "diffing"
path = "tests/diffing.rs"
[[test]]
name = "events"
path = "tests/events.rs"
[[test]]
name = "interactive"
path = "tests/interactive.rs"
[[test]]
name = "layout"
path = "tests/layout.rs"
[[test]]
name = "owned_task_handle"
path = "tests/owned_task_handle.rs"
[[test]]
name = "paragraph"
path = "tests/paragraph.rs"
[[test]]
name = "render"
path = "tests/render.rs"
[[test]]
name = "writable_readable"
path = "tests/writable_readable.rs"
[dependencies.accesskit]
version = "0.24.0"
[dependencies.async-watch]
version = "0.3.1"
[dependencies.bitflags]
version = "2.9.3"
[dependencies.bytes]
version = "1.10.1"
[dependencies.cursor-icon]
version = "1.2.0"
[dependencies.dioxus-devtools]
version = "0.7.4"
optional = true
[dependencies.freya-engine]
version = "0.4.0"
[dependencies.futures-channel]
version = "0.3.31"
[dependencies.futures-lite]
version = "2.6.1"
[dependencies.futures-util]
version = "0.3.31"
[dependencies.generational-box]
version = "0.7"
[dependencies.hotpath]
version = "0.15.1"
[dependencies.itertools]
version = "0.14.0"
[dependencies.keyboard-types]
version = "0.8.0"
[dependencies.mundy]
version = "0.2.3"
features = [
"async-io",
"callback",
"accent-color",
]
default-features = false
[dependencies.paste]
version = "1.0.15"
[dependencies.pathgraph]
version = "0.4.0"
[dependencies.ragnarok]
version = "0.4.0"
[dependencies.rustc-hash]
version = "2.1.1"
[dependencies.serde]
version = "1"
optional = true
[dependencies.smallvec]
version = "1.15.1"
[dependencies.subsecond]
version = "0.7.4"
optional = true
[dependencies.torin]
version = "0.4.0"
[dependencies.tracing]
version = "0.1.41"
[dev-dependencies]
[lints.clippy]
redundant_clone = "warn"