blob: 1c15d09be24dcecae5531757e53b7c0fc6014e22 [file] [log] [blame]
Yiming Jingcf21fc42021-07-16 13:23:26 -07001# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
David LeGare2ef8bcb2022-03-02 16:21:14 +00006# to registry (e.g., crates.io) dependencies.
Yiming Jingcf21fc42021-07-16 13:23:26 -07007#
David LeGare2ef8bcb2022-03-02 16:21:14 +00008# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
Yiming Jingcf21fc42021-07-16 13:23:26 -070011
12[package]
13edition = "2018"
14name = "num-bigint"
David LeGare2ef8bcb2022-03-02 16:21:14 +000015version = "0.4.3"
Yiming Jingcf21fc42021-07-16 13:23:26 -070016authors = ["The Rust Project Developers"]
17build = "build.rs"
18exclude = ["/bors.toml", "/ci/*", "/.github/*"]
19description = "Big integer implementation for Rust"
20homepage = "https://github.com/rust-num/num-bigint"
21documentation = "https://docs.rs/num-bigint"
22readme = "README.md"
23keywords = ["mathematics", "numerics", "bignum"]
24categories = ["algorithms", "data-structures", "science"]
25license = "MIT OR Apache-2.0"
26repository = "https://github.com/rust-num/num-bigint"
27[package.metadata.docs.rs]
28features = ["std", "serde", "rand", "quickcheck", "arbitrary"]
29
30[[bench]]
31name = "bigint"
32
33[[bench]]
34name = "factorial"
35
36[[bench]]
37name = "gcd"
38
39[[bench]]
40name = "roots"
41
42[[bench]]
43name = "shootout-pidigits"
44harness = false
45[dependencies.arbitrary]
46version = "1"
47optional = true
48default-features = false
49
50[dependencies.num-integer]
51version = "0.1.42"
52features = ["i128"]
53default-features = false
54
55[dependencies.num-traits]
56version = "0.2.11"
57features = ["i128"]
58default-features = false
59
60[dependencies.quickcheck]
61version = "1"
62optional = true
63default-features = false
64
65[dependencies.rand]
66version = "0.8"
67optional = true
68default-features = false
69
70[dependencies.serde]
71version = "1.0"
72optional = true
73default-features = false
74[build-dependencies.autocfg]
75version = "1"
76
77[features]
78default = ["std"]
79std = ["num-integer/std", "num-traits/std"]