cgmath/Cargo.toml

37 lines
1,006 B
TOML
Raw Permalink Normal View History

2014-06-23 03:35:40 +00:00
[package]
name = "cgmath"
2021-01-03 01:01:35 +00:00
version = "0.18.0"
authors = ["Rust game-developers"]
license = "Apache-2.0"
description = "A linear algebra and mathematics library for computer graphics."
2016-09-05 19:01:27 +00:00
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"]
2014-06-23 03:35:40 +00:00
2014-08-30 00:00:34 +00:00
[lib]
2014-06-23 03:35:40 +00:00
name = "cgmath"
2014-12-26 21:18:29 +00:00
2015-12-20 20:24:56 +00:00
[features]
unstable = []
swizzle = []
2015-12-20 20:24:56 +00:00
2014-12-26 21:18:29 +00:00
[dependencies]
2021-06-07 23:46:39 +00:00
approx = "0.5"
mint = { version = "0.5.8", optional = true }
2018-04-29 04:00:36 +00:00
num-traits = "0.2"
# small_rng used only for benchmarks
2020-12-25 06:17:01 +00:00
rand = { version = "0.8", features = ["small_rng"], optional = true }
2017-06-06 20:48:55 +00:00
serde = { version = "1.0", features = ["serde_derive"], optional = true }
2021-01-03 01:01:35 +00:00
# works only in rust toolchain up to 1.32, disabled indefinitely
#simd = { version = "0.2", optional = true }
bytemuck = { version = "1.0", optional = true }
2023-01-27 10:58:55 +00:00
safer-ffi = { version = "0.0.10", features = ["proc_macros"] }
2016-03-26 05:40:31 +00:00
[dev-dependencies]
2017-04-22 22:31:50 +00:00
serde_json = "1.0"