-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 746 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 746 Bytes
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
[package]
name = "easer"
version = "0.3.0"
authors = ["Orhan Balci <orhanbalci@gmail.com>"]
description="Tiny library imlementing Robert Penner's easing functions"
documentation="http://orhanbalci.github.io/rust-easing"
homepage="https://github.com/orhanbalci"
repository="https://github.com/orhanbalci/rust-easing.git"
keywords=["easing","animation","tween"]
license="MIT"
exclude=[".travis.yml"]
readme = "README.md"
categories = ["mathematics", "algorithms", "no-std"]
[features]
default = ["std"]
std = ["num-traits/std"]
libm = ["num-traits/libm"]
[dependencies]
num-traits = { version = "0.2", default-features = false }
[dev-dependencies]
approx="0.2"
gnuplot="0.0.25"
[[example]]
name="easer_plotter"
path="examples/easer_plotter.rs"