size-convert 0.1.0

Conversions to and from Rust's machine-dependent integer types, usize and isize
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"