1[package]
2authors = ["The Rust Project Developers"]
3description = "Integer traits and functions"
4documentation = "https://docs.rs/num-integer"
5homepage = "https://github.com/rust-num/num-integer"
6keywords = ["mathematics", "numerics"]
7categories = ["algorithms", "science", "no-std"]
8license = "MIT OR Apache-2.0"
9repository = "https://github.com/rust-num/num-integer"
10name = "num-integer"
11version = "0.1.46"
12readme = "README.md"
13exclude = ["/ci/*", "/.github/*"]
14edition = "2018"
15rust-version = "1.31"
16
17[package.metadata.docs.rs]
18features = ["std"]
19
20[dependencies.num-traits]
21version = "0.2.11"
22default-features = false
23features = ["i128"]
24
25[features]
26default = ["std"]
27std = ["num-traits/std"]
28
29# vestigial features, now always in effect
30i128 = []
31