This repository was archived by the owner on Jan 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
119 lines (115 loc) · 2.28 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[package]
name = "fdlibm-rs"
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["mtb0x1 <[email protected]>"]
repository = "https://github.com/mtb0x1/fdlibm-rs"
homepage = "https://github.com/mtb0x1/fdlibm-rs"
readme = "README.md"
description = "rust wrapper of FDLIBM, a C math library for machines that support IEEE-754 floating-point arithmetic."
exclude = [".gitignore"]
build = "build.rs"
keywords = ["FDLIBM-rs", "cmath", "math", "IEEE-754", "ffi"]
[build-dependencies]
bindgen = { version = "0.69.1", default-features = false, features = ["runtime"] }
cc = { version = "1.0.83"}
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[lib]
name = "fdlibm_rs"
path = "src/lib.rs"
crate-type = ["cdylib", "rlib"]
[[bench]]
name = "acos_benchmark"
harness = false
[[bench]]
name = "atanh_benchmark"
harness = false
[[bench]]
name = "expm1_benchmark"
harness = false
[[bench]]
name = "j1_benchmark"
harness = false
[[bench]]
name = "log_benchmark"
harness = false
[[bench]]
name = "tanh_benchmark"
harness = false
[[bench]]
name = "acosh_benchmark"
harness = false
[[bench]]
name = "cbrt_benchmark"
harness = false
[[bench]]
name = "fabs_benchmark"
harness = false
[[bench]]
name = "jn_benchmark"
harness = false
[[bench]]
name = "pow_benchmark"
harness = false
[[bench]]
name = "asin_benchmark"
harness = false
[[bench]]
name = "ceil_benchmark"
harness = false
[[bench]]
name = "floor_benchmark"
harness = false
[[bench]]
name = "ldexp_benchmark"
harness = false
[[bench]]
name = "sin_benchmark"
harness = false
[[bench]]
name = "asinh_benchmark"
harness = false
[[bench]]
name = "cos_benchmark"
harness = false
[[bench]]
name = "gamma_benchmark"
harness = false
[[bench]]
name = "lgamma_benchmark"
harness = false
[[bench]]
name = "sinh_benchmark"
harness = false
[[bench]]
name = "atan2_benchmark"
harness = false
[[bench]]
name = "cosh_benchmark"
harness = false
[[bench]]
name = "ilogb_benchmark"
harness = false
[[bench]]
name = "log10_benchmark"
harness = false
[[bench]]
name = "sqrt_benchmark"
harness = false
[[bench]]
name = "atan_benchmark"
harness = false
[[bench]]
name = "exp_benchmark"
harness = false
[[bench]]
name = "j0_benchmark"
harness = false
[[bench]]
name = "log1p_benchmark"
harness = false
[[bench]]
name = "tan_benchmark"
harness = false