[package]
edition = "2024"
rust-version = "1.89"
name = "animato-dioxus"
version = "1.6.0"
authors = ["Aarambh Dev Hub"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Dioxus integration for the Animato animation library: cross-platform hooks, motion, scroll, presence, lists, gestures, and native helpers."
readme = "README.md"
keywords = [
"animation",
"dioxus",
"signals",
"wasm",
"gui",
]
categories = [
"wasm",
"web-programming",
"gui",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AarambhDevHub/animato"
resolver = "2"
[features]
color = ["dep:animato-color"]
css = []
default = [
"scroll",
"presence",
"transition",
"list",
"gesture",
"motion",
"css",
"platform",
]
desktop = [
"dioxus/desktop",
"native",
]
gesture = ["dep:animato-physics"]
list = ["presence"]
mobile = [
"dioxus/mobile",
"native",
]
motion = []
native = []
path = ["dep:animato-path"]
platform = []
presence = ["css"]
router = [
"dep:dioxus-router",
"dioxus/router",
"transition",
]
scroll = []
transition = ["presence"]
web = [
"dioxus/web",
"dep:wasm-bindgen",
"dep:web-sys",
"animato-wasm",
]
[lib]
name = "animato_dioxus"
path = "src/lib.rs"
[dependencies.animato-color]
version = "1.6.0"
optional = true
[dependencies.animato-core]
version = "1.6.0"
[dependencies.animato-driver]
version = "1.6.0"
[dependencies.animato-path]
version = "1.6.0"
features = ["std"]
optional = true
[dependencies.animato-physics]
version = "1.6.0"
features = ["std"]
optional = true
[dependencies.animato-spring]
version = "1.6.0"
features = ["std"]
[dependencies.animato-timeline]
version = "1.6.0"
[dependencies.animato-tween]
version = "1.6.0"
features = ["std"]
[dependencies.animato-wasm]
version = "1.6.0"
optional = true
[dependencies.dioxus]
version = "0.7.9"
features = [
"hooks",
"html",
"macro",
"signals",
]
default-features = false
[dependencies.dioxus-router]
version = "0.7.9"
optional = true
default-features = false
[dev-dependencies.approx]
version = "0.5"
[target.'cfg(target_arch = "wasm32")'.dependencies.wasm-bindgen]
version = "0.2"
optional = true
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
version = "0.3"
features = [
"Document",
"DomRect",
"Element",
"EventTarget",
"HtmlElement",
"Performance",
"PointerEvent",
"Window",
]
optional = true