-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (26 loc) · 889 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
30
31
32
33
[package]
name = "astro_nalgebra"
version = "0.1.1"
edition = "2021"
authors = ["Benjamin Cates <[email protected]>"]
license = "MIT"
description = "Implementation of astro-float for nalgebra"
keywords = ["bigfloat","nalgebra","arbitrary-precision","numeric","float"]
readme = "README.md"
repository = "https://github.com/benjamin-cates/astro_nalgebra"
categories = ["mathematics"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
astro-float = { version = "0.9.1", default-features = false }
nalgebra = "0.32.3"
num-traits = "^0.2"
simba = "^0.8"
approx = "^0.5"
serde = {version = "^1.0", optional = true, features = ["derive"]}
[dev-dependencies]
rand = "0.8.5"
[features]
default = ["std", "random", "serde"]
std = ["astro-float/std"]
serde = ["dep:serde", "astro-float/serde"]
random = ["astro-float/random"]