1# 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
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "num-bigint"
16version = "0.3.2"
17authors = ["The Rust Project Developers"]
18build = "build.rs"
19exclude = ["/bors.toml", "/ci/*", "/.github/*"]
20description = "Big integer implementation for Rust"
21homepage = "https://github.com/rust-num/num-bigint"
22documentation = "https://docs.rs/num-bigint"
23readme = "README.md"
24keywords = ["mathematics", "numerics", "bignum"]
25categories = ["algorithms", "data-structures", "science"]
26license = "MIT OR Apache-2.0"
27repository = "https://github.com/rust-num/num-bigint"
28[package.metadata.docs.rs]
29features = ["std", "serde", "rand", "quickcheck", "arbitrary"]
30
31[[bench]]
32name = "bigint"
33
34[[bench]]
35name = "factorial"
36
37[[bench]]
38name = "gcd"
39
40[[bench]]
41name = "roots"
42
43[[bench]]
44name = "shootout-pidigits"
45harness = false
46[dependencies.arbitrary]
47version = "0.4"
48optional = true
49default-features = false
50
51[dependencies.num-integer]
52version = "0.1.42"
53features = ["i128"]
54default-features = false
55
56[dependencies.num-traits]
57version = "0.2.11"
58features = ["i128"]
59default-features = false
60
61[dependencies.quickcheck]
62version = "0.9"
63optional = true
64default-features = false
65
66[dependencies.rand]
67version = "0.7"
68optional = true
69default-features = false
70
71[dependencies.serde]
72version = "1.0"
73optional = true
74default-features = false
75[build-dependencies.autocfg]
76version = "1"
77
78[features]
79default = ["std"]
80std = ["num-integer/std", "num-traits/std"]
81