-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
73 lines (57 loc) · 1.33 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
[package]
name = "ibig"
version = "0.3.6"
authors = ["Tomek Czajka <[email protected]>"]
edition = "2021"
rust-version = "1.61"
description = "A big integer library with good performance"
keywords = ["bigint", "bignum", "mathematics", "modular", "modulo"]
categories = ["mathematics", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tczajka/ibig-rs"
homepage = "https://github.com/tczajka/ibig-rs"
readme = "README.md"
exclude = ["generate_coverage.sh"]
[package.metadata.docs.rs]
all-features = true
[features]
default = ["std"]
# Interface with the std library.
std = []
[dependencies.cfg-if]
version = "1.0.0"
[dependencies.static_assertions]
version = "1.1"
[dependencies.num-traits]
version = "0.2.14"
default-features = false
[dependencies.rand]
optional = true
version = "0.8.3"
default-features = false
[dependencies.serde]
optional = true
version = "1.0.130"
default-features = false
features = ["derive"]
[dev-dependencies.criterion]
version = "0.3.4"
features = ["html_reports"]
[dev-dependencies.rand]
version = "0.8.3"
[dev-dependencies.serde_test]
version = "1.0.130"
[lib]
bench = false
[[test]]
name = "random"
required-features = ["rand"]
[[test]]
name = "serde"
required-features = ["serde"]
[[bench]]
name = "benchmarks"
required-features = ["rand"]
harness = false
[workspace]
members = ["dev-tools"]