1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 05:49:11 +00:00
trezor-firmware/rust/pareen/Cargo.toml
2024-06-03 14:26:25 +02:00

35 lines
866 B
TOML

[package]
name = "pareen"
version = "0.3.3"
authors = ["leod <subtle.frustration@proton.me>"]
edition = "2018"
license = "MIT"
description = "A small library for parameterized inbetweening"
homepage = "https://github.com/leod/pareen"
documentation = "https://docs.rs/pareen"
repository = "https://github.com/leod/pareen"
keywords = ["animation", "combinators", "tween", "easing"]
readme = "README.md"
exclude = [".github"]
[features]
default = ["std"]
std = ["alloc", "num-traits/std"]
alloc = []
libm = ["num-traits/libm"]
[dependencies]
num-traits = { version = "0.2", default-features = false }
easer = { version = "0.3.0", default-features = false, optional = true }
[dev-dependencies]
assert_approx_eq = "1.0"
gnuplot = "0.0.32"
[package.metadata.docs.rs]
features = ["std", "alloc", "libm", "easer"]
[[example]]
name = "plots"
required-features = ["std"]