• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.44"
12readme = "README.md"
13build = "build.rs"
14exclude = ["/bors.toml", "/ci/*", "/.github/*"]
15
16[package.metadata.docs.rs]
17features = ["std"]
18
19[dependencies.num-traits]
20version = "0.2.11"
21default-features = false
22
23[features]
24default = ["std"]
25i128 = ["num-traits/i128"]
26std = ["num-traits/std"]
27
28[build-dependencies]
29autocfg = "1"
30