-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
Cargo.toml
29 lines (25 loc) · 811 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
[package]
name = "ultraviolet"
version = "0.10.0-alpha.0"
authors = ["Gray Olson <[email protected]>"]
edition = "2018"
description = "A crate to do linear algebra, fast."
repository = "https://github.com/termhn/ultraviolet"
readme = "README.md"
keywords = ["simd", "wide", "graphics", "math", "linear-algebra"]
license = "MIT OR Apache-2.0 OR Zlib"
[package.metadata.docs.rs]
features = ["f64", "int", "serde", "mint", "bytemuck"]
[dependencies]
# wide = { path = "../wide", optional = true }
wide = { version = "0.7" }
serde = { version = "1.0", features = [], optional = true }
mint = { version = "0.5", optional = true }
bytemuck = { version = "1.4", optional = true }
num-traits = { version = "0.2.15", optional = true }
[features]
default = []
f64 = []
int = []
[dev-dependencies]
serde_test = "1.0"