[package]
edition = "2021"
name = "anyint"
version = "0.1.0"
authors = ["brecert <me@bree.dev>"]
description = "provides traits and structs for working with integers of any bit size"
homepage = "https://github.com/brecert/anyint"
keywords = [
"integer",
"number",
]
categories = [
"no-std",
"rust-patterns",
]
license = "MIT"
repository = "https://github.com/brecert/anyint"
[dependencies.anyint_macros]
version = "0.1"
[dependencies.displaydoc]
version = "0.2"
optional = true
default-features = false
[dependencies.num-traits]
version = "0.2"
optional = true
[dependencies.thiserror]
version = "1.0"
optional = true
[features]
default = [
"std",
"displaydoc",
]
num_traits = ["num-traits"]
std = [
"thiserror",
"displaydoc?/std",
]