You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
733 B
30 lines
733 B
[package]
|
|
authors = ["The Rust Project Developers"]
|
|
description = "Integer traits and functions"
|
|
documentation = "https://docs.rs/num-integer"
|
|
homepage = "https://github.com/rust-num/num-integer"
|
|
keywords = ["mathematics", "numerics"]
|
|
categories = ["algorithms", "science", "no-std"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rust-num/num-integer"
|
|
name = "num-integer"
|
|
version = "0.1.44"
|
|
readme = "README.md"
|
|
build = "build.rs"
|
|
exclude = ["/bors.toml", "/ci/*", "/.github/*"]
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["std"]
|
|
|
|
[dependencies.num-traits]
|
|
version = "0.2.11"
|
|
default-features = false
|
|
|
|
[features]
|
|
default = ["std"]
|
|
i128 = ["num-traits/i128"]
|
|
std = ["num-traits/std"]
|
|
|
|
[build-dependencies]
|
|
autocfg = "1"
|