-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 788 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 788 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
[package]
name = "maths-rs"
version = "1.0.0"
edition = "2021"
authors = ["polymonster <alexandercdixon@gmail.com>"]
description = "A linear algebra library for gamedev and graphics"
readme = "readme.md"
homepage = "https://github.com/polymonster/maths-rs"
repository = "https://github.com/polymonster/maths-rs"
keywords = ["linear-algebra", "math", "vector", "matrix", "quaternion"]
categories = ["mathematics", "game-development", "graphics"]
license = "MIT"
[features]
short_hand_constructors = []
lhs_scalar_vec_ops = []
casts = []
short_types = []
serde = ["dep:serde"]
hash = []
default = ["short_hand_constructors", "lhs_scalar_vec_ops", "casts", "short_types"]
[dependencies]
serde = {version = "1.0", features = ["derive"], optional=true}
[dev-dependencies]
serde_json = "1.0"