-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
34 lines (29 loc) · 864 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[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.2", 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"]