forked from rustgd/cgmath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (29 loc) · 971 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
[package]
name = "cgmath"
version = "0.18.0"
authors = ["Rust game-developers"]
license = "Apache-2.0"
description = "A linear algebra and mathematics library for computer graphics."
documentation = "https://docs.rs/cgmath"
homepage = "https://github.com/rustgd/cgmath"
repository = "https://github.com/rustgd/cgmath"
readme = "README.md"
keywords = ["gamedev", "math", "matrix", "vector", "quaternion"]
[lib]
name = "cgmath"
[features]
unstable = []
swizzle = []
[dependencies]
approx = "0.5"
mint = { version = "0.5.8", optional = true }
num-traits = "0.2"
# small_rng used only for benchmarks
rand = { version = "0.8", features = ["small_rng"], optional = true }
serde = { version = "1.0", features = ["serde_derive"], optional = true }
bytemuck = { version = "1.0", optional = true }
rstar = { version = "0.9.3", optional = true }
[dev-dependencies]
serde_json = "1.0"
[patch.crates-io]
rstar = { git = "https://github.com/georust/rstar.git", tag = "0.9.3" }