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