-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
36 lines (31 loc) · 803 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
34
35
36
[package]
name = "astro-float"
version = "0.9.4"
edition = "2021"
authors = ["stencillogic <stencillogic@gmail.com>"]
license = "MIT"
description = "Multiple precision floating-point numbers library."
categories = ["algorithms", "data-structures", "science", "no-std"]
keywords = ["bigfloat", "numeric", "mathematics", "bignum"]
readme = "README.md"
repository = "https://github.com/stencillogic/astro-float"
[dependencies]
astro-float-num = "0.3.5"
astro-float-macro = "0.4.4"
[features]
default = ["std", "random", "serde"]
std = []
random = ["astro-float-num/random"]
serde = ["astro-float-num/serde"]
[dev-dependencies]
trybuild = "1.0"
rusty-hook = "0.11.2"
[workspace]
members = [
"astro-float-num",
"astro-float-macro",
]
[profile.release]
opt-level = 3
lto = true
codegen-units = 1