[package]
edition = "2024"
rust-version = "1.88"
name = "aura-anim"
version = "0.2.2"
authors = ["krteke"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convenience facade for aura animation core and Iced integration."
documentation = "https://docs.rs/aura-anim"
readme = "README.md"
keywords = [
"iced",
"animation",
"ui",
"motion",
]
categories = [
"gui",
"graphics",
]
license = "MIT"
repository = "https://github.com/krteke/aura-anim-iced"
[package.metadata.docs.rs]
features = ["rgba"]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = ["rgba"]
oklaba = ["aura-anim-iced/oklaba"]
rgba = ["aura-anim-iced/rgba"]
[lib]
name = "aura_anim"
path = "src/lib.rs"
[[example]]
name = "runtime"
path = "examples/runtime.rs"
[[test]]
name = "facade"
path = "tests/facade.rs"
[dependencies.aura-anim-core]
version = "0.2.2"
[dependencies.aura-anim-iced]
version = "0.2.2"
default-features = false
[dev-dependencies.float-cmp]
version = "0.10.0"
[lints.clippy]
alloc_instead_of_core = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
std_instead_of_core = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_must_use = "deny"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1