[package]
edition = "2021"
rust-version = "1.63"
name = "int-cast"
version = "0.1.0"
authors = ["Orson Peters <orsonpeters@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convenient casts between primitive integers."
readme = "README.md"
keywords = [
"cast",
"integer",
"conversion",
]
categories = [
"algorithms",
"mathematics",
"no-std::no-alloc",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/orlp/int-cast"
[features]
default = ["std"]
nonzero = []
std = []
[lib]
name = "int_cast"
path = "src/lib.rs"
[dependencies]
[dev-dependencies.concat-idents]
version = "1"
[dev-dependencies.num-bigint]
version = "0.4"