-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
42 lines (36 loc) · 946 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
35
36
37
38
39
40
41
42
[package]
name = "tween"
version = "2.0.4"
edition = "2021"
authors = ["Jonathan Spira <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sanbox-irl/tween"
description = "A tweening library for games"
categories = ["rendering::data-formats", "game-development"]
[features]
default = ["std"]
std = []
ultraviolet-f64 = ["ultraviolet/f64"]
[dependencies]
libm = { version = "0.2", optional = true }
glam = { version = "0.29", optional = true }
nalgebra = { version = "0.33", optional = true }
vek = { version = "0.17", optional = true }
ultraviolet = { version = "0.9.0", optional = true }
cgmath = { version = "0.18", optional = true }
[dev-dependencies]
criterion = "0.5"
rand = "0.8.5"
paste = "1.0.11"
approx = "0.5"
easer = "0.3"
static_assertions = "1.1"
[[example]]
name = "erased"
required-features = ["std"]
[[bench]]
name = "benchmark"
harness = false
[[bench]]
name = "dyn_vs_not"
harness = false