-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 1.02 KB
/
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
[package]
name = "wgm"
license = "MIT"
edition = "2021"
version = "0.0.7"
repository = "https://github.com/ShyAssassin/wgm"
categories = ["mathematics", "game-development"]
keywords = ["gamedev", "math", "vector", "matrix"]
description = "A fast and simple math library for game and graphics development"
[features]
default = ["rand", "bytemuck", "swizzle", "serde"]
bytemuck = ["dep:bytemuck"]
serde = ["dep:serde"]
rand = ["dep:rand"]
swizzle = []
[dependencies]
rand = {version = "0.8.5", default-features = false, optional = true}
serde = {version = "1.0.207", default-features = false, optional = true}
bytemuck = {version = "1.16.3", default-features = false, optional = true}
num-traits = {version = "0.2.19", default-features = false, features = ["std"] }
[lints.clippy]
needless_return = "allow"
redundant_field_names = "allow"
[dev-dependencies]
rand = { version = "0.8.5" }
serde_json = { version = "1.0.127" }
serde = { version = "1.0.207", features = ["derive"] }
wgm = { path = ".", features = ["rand", "serde", "swizzle"] }