forked from rust-num/num-bigint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
73 lines (58 loc) · 1.38 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]
authors = ["The Rust Project Developers"]
description = "Big integer implementation for Rust"
documentation = "https://docs.rs/num-bigint"
homepage = "https://github.com/rust-num/num-bigint"
keywords = ["mathematics", "numerics", "bignum"]
categories = [ "algorithms", "data-structures", "science" ]
license = "MIT OR Apache-2.0"
name = "num-bigint"
repository = "https://github.com/rust-num/num-bigint"
version = "0.4.4"
readme = "README.md"
build = "build.rs"
exclude = ["/bors.toml", "/ci/*", "/.github/*"]
edition = "2018"
[features]
default = ["std"]
std = ["num-integer/std", "num-traits/std"]
[package.metadata.docs.rs]
features = ["std", "serde", "rand", "quickcheck", "arbitrary"]
[[bench]]
name = "bigint"
[[bench]]
name = "factorial"
[[bench]]
name = "gcd"
[[bench]]
name = "roots"
[[bench]]
harness = false
name = "shootout-pidigits"
[dependencies]
[dependencies.num-integer]
version = "0.1.42"
default-features = false
features = ["i128"]
[dependencies.num-traits]
version = "0.2.16"
default-features = false
features = ["i128"]
[dependencies.rand]
optional = true
version = "0.8"
default-features = false
[dependencies.serde]
optional = true
version = "1.0"
default-features = false
[dependencies.quickcheck]
optional = true
version = "1"
default-features = false
[dependencies.arbitrary]
optional = true
version = "1"
default-features = false
[build-dependencies]
autocfg = "1"