-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 787 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (27 loc) · 787 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
[package]
name = "lie-groups"
version = "0.2.0"
edition = "2021"
rust-version = "1.75"
authors = ["Gestell Labs LLC"]
license = "BSD-3-Clause"
description = "Lie groups and Lie algebras for computational mathematics"
repository = "https://github.com/gestelllabs/lie-groups"
keywords = ["lie-group", "lie-algebra", "rotation", "representation", "bch"]
categories = ["mathematics", "science"]
readme = "README.md"
[features]
default = ["rand"]
rand = ["dep:rand", "dep:rand_distr"]
proptest = ["dep:proptest"]
[dependencies]
nalgebra = "0.33"
ndarray = "0.16"
num-complex = "0.4"
approx = "0.5"
rand = { version = "0.8", optional = true }
rand_distr = { version = "0.4", optional = true }
proptest = { version = "1", optional = true }
[dev-dependencies]
rand = "0.8"
rand_distr = "0.4"