| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- [package]
- name = "ibig"
- version = "0.3.6"
- authors = ["Tomek Czajka <tczajka@gmail.com>"]
- edition = "2021"
- rust-version = "1.56.0"
- 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"]
- [lints.clippy]
- missing_safety_doc = "allow"
- [package.metadata.docs.rs]
- all-features = true
- [features]
- default = ["std", "rand", "num-traits"]
- # Interface with the std library.
- std = []
- [dependencies.cfg-if]
- workspace = true
- [dependencies.static_assertions]
- workspace = true
- [dependencies.num-traits]
- optional = true
- workspace = true
- default-features = false
- [dependencies.rand]
- optional = true
- workspace = true
- default-features = false
- [dependencies.serde]
- optional = true
- workspace = true
- default-features = false
- features = ["derive"]
- [dev-dependencies.criterion]
- workspace = true
- features = ["html_reports"]
- [dev-dependencies.rand]
- workspace = true
- [dev-dependencies.serde_test]
- version = "1.0.130"
- [lib]
- bench = false
- test = false
- doctest = false
- # [[test]]
- # name = "random"
- # required-features = ["rand"]
- # [[test]]
- # name = "serde"
- # required-features = ["serde"]
- [[bench]]
- name = "benchmarks"
- required-features = ["rand"]
- harness = false
- [lints.rust]
- unexpected_cfgs = { level = "warn", check-cfg = [
- 'cfg(force_bits, values("16","32","64"))',
- ] }
|