[package]
edition = "2024"
name = "size-convert"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Conversions to and from Rust's machine-dependent integer types, usize and isize"
readme = "README.md"
categories = ["no-std"]
license = "MIT"
repository = "https://github.com/wleslie/size-convert"
[features]
at-least-128 = ["at-least-64"]
at-least-32 = []
at-least-64 = ["at-least-32"]
at-most-128 = []
at-most-16 = ["at-most-32"]
at-most-32 = ["at-most-64"]
at-most-64 = ["at-most-128"]
exactly-128 = [
"at-least-128",
"at-most-128",
]
exactly-32 = [
"at-least-32",
"at-most-32",
]
exactly-64 = [
"at-least-64",
"at-most-64",
]
[lib]
name = "size_convert"
path = "src/lib.rs"