[package]
edition = "2024"
name = "dola"
version = "0.0.1"
authors = ["ekicyou <dot.station@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Declarative Orchestration for Live Animation"
readme = "README.md"
keywords = [
"animation",
"declarative",
"easing",
"interpolation",
"timeline",
]
categories = [
"graphics",
"game-development",
]
license = "MIT"
repository = "https://github.com/ekicyou/areka"
resolver = "2"
[features]
default = ["json"]
json = ["dep:serde_json"]
runtime = ["dep:interpolation"]
toml = ["dep:toml"]
yaml = ["dep:serde_yaml"]
[lib]
name = "dola"
path = "src/lib.rs"
[[test]]
name = "builder_test"
path = "tests/builder_test.rs"
[[test]]
name = "compile_integration_test"
path = "tests/compile_integration_test.rs"
[[test]]
name = "compile_test"
path = "tests/compile_test.rs"
[[test]]
name = "core_types_test"
path = "tests/core_types_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "runtime_core_types_test"
path = "tests/runtime_core_types_test.rs"
[[test]]
name = "validation_test"
path = "tests/validation_test.rs"
[dependencies.interpolation]
version = "0.3.0"
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
optional = true
[dependencies.serde_yaml]
version = "0.9"
optional = true
[dependencies.toml]
version = "0.8"
optional = true