-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
37 lines (31 loc) · 996 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
37
[package]
name = "twofloat"
version = "0.8.0"
authors = ["Andrew Tribick", "Individual contributors"]
keywords = ["float", "precision", "numerics", "floating-point", "arithmetic"]
categories = ["algorithms", "mathematics", "science"]
exclude = [".github", ".gitignore", "ci-workdir", "sollya", "scripts"]
edition = "2018"
readme = "README.md"
license = "BSD-3-Clause"
description = "Double-double arithmetic functionality."
repository = "https://github.com/ajtribick/twofloat"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "twofloat"
test = true
[features]
default = ["std", "math_funcs"]
math_funcs = []
std = []
[dependencies]
hexf = "0.2"
libm = { version = "0.2.6" }
num-traits = { version = "0.2.14", default-features = false, features = ["libm"] }
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
[target.'cfg(all(windows, target_env = "gnu"))'.dependencies]
libm = "0.2.6"
[dev-dependencies]
rand = "0.8"
serde_test = "1.0"