-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 763 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 763 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
30
31
32
33
34
35
36
37
38
[package]
name = "tween"
version = "2.2.0"
edition = "2024"
authors = ["Jonathan Spira <jjspira@gmail.com>"]
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 = []
[dependencies]
libm = { version = "0.2", optional = true }
glam = { version = "0.32", optional = true }
nalgebra = { version = "0.34", optional = true }
[dev-dependencies]
criterion = "0.8"
rand = "0.10"
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