-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
70 lines (59 loc) · 1.45 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[package]
name = "cggeomalg"
version = "0.3.0"
edition = "2021"
authors = ["LambdaXymox <[email protected]>"]
description = "A low-dimensional geometric algebra library for real-time computer graphics."
categories = [
"graphics",
"mathematics",
"game-development",
"game-engines",
"no_std"
]
keywords = [
"graphics",
"geometric-algebra",
"multivector",
"euclidean",
"conformal"
]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/lambdaxymox/cggeomalg"
[lib]
name = "cggeomalg"
path = "src/lib.rs"
crate-type = ["rlib", "cdylib"]
[features]
default = ["std"]
# Option: "core" is a platform-agnostic option that works in environments that cannot
# allocate memory. The environment needs to supply its own implementations of
# `eh_personality`.
core = []
# Option: "alloc" enables support for environments that can allocate memory
# but don't use the full standard library.
alloc = []
# Option: "std" enables support for environments that use the full standard library.
std = []
[dependencies.approx_cmp]
git = "https://github.com/lambdaxymox/approx_cmp/"
version = "1.0.0"
features = ["core"]
[dependencies.num-traits]
version = "0.2.17"
default-features = false
features = ["libm"]
[dev-dependencies]
criterion = "0.5.1"
rand = "0.8.5"
rand_isaac = "0.3.0"
[profile.release]
opt-level = 2
[profile.test]
[[bench]]
name = "bench_e2ga"
harness = false
[[bench]]
name = "bench_e3ga"
harness = false