-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
36 lines (33 loc) · 1.09 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
[package]
name = "special"
version = "0.11.2"
edition = "2021"
license = "Apache-2.0 OR MIT"
authors = [
"Abhishek Chanda <[email protected]>",
"Albert Pang <[email protected]>",
"Baxter Eaves <[email protected]>",
"Christian Amsüss <[email protected]>",
"Ivan Ukhov <[email protected]>",
"Johanna Sörngård <[email protected]>",
"Robert Bamler <[email protected]>",
"Rúnar Berg Baugsson Sigríðarson <[email protected]>",
"zolkko <[email protected]>",
]
description = "The package provides special functions."
documentation = "https://docs.rs/special"
homepage = "https://github.com/stainless-steel/special"
repository = "https://github.com/stainless-steel/special"
readme = "README.md"
categories = ["algorithms", "no-std::no-alloc", "science"]
keywords = ["beta", "error", "lambert-w", "gamma"]
[features]
default = ["no_std"]
no_std = ["lambert_w/libm"]
std = ["lambert_w/std"]
[dependencies]
lambert_w = { version = "0.5.4", default-features = false, features = ["24bits", "50bits"] }
libm = "0.2"
[dev-dependencies]
assert = "0.7"
random = "0.12"