-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 743 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (27 loc) · 743 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
28
29
30
31
[package]
name = "geonum"
version = "0.15.0"
edition = "2021"
repository = "https://github.com/mxfactorial/geonum"
description = "geometric number library supporting unlimited dimensions with O(1) complexity"
license = "BSD-3-Clause"
readme = "README.md"
keywords = ["geonum", "geometry", "math", "algebra", "geometric-algebra"]
categories = ["mathematics", "simulation", "algorithms", "data-structures"]
authors = ["mxfactorial"]
[features]
default = []
optics = []
projection = []
ml = []
em = []
waves = []
chemistry = []
all = ["optics", "projection", "ml", "em", "waves", "chemistry"]
[dependencies]
[dev-dependencies]
criterion = "0.7"
geonum = { path = ".", features = ["all"] }
[[bench]]
name = "geonum_benchmarks"
harness = false