hexga_typedef 0.0.11-beta.56

Provide a common typedef for `float`, `int` and `uint`. The precision can be changed with feature flags and can be easily shared across multiple crates.
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 = "hexga_typedef"
version = "0.0.11-beta.56"
authors = ["Mewily <thomas.mewily@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Provide a common typedef for `float`, `int` and `uint`. The precision can be changed with feature flags and can be easily shared across multiple crates."
homepage = "https://github.com/Thomas-Mewily/hexga"
readme = "README.md"
keywords = [
    "math",
    "number",
]
categories = [
    "mathematics",
    "rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Thomas-Mewily/hexga"

[features]
default = [
    "int_are_32_bits",
    "float_are_32_bits",
]
float_are_32_bits = []
float_are_64_bits = []
float_are_size_bits = []
int_are_16_bits = []
int_are_32_bits = []
int_are_64_bits = []
int_are_8_bits = []
int_are_size_bits = []

[lib]
name = "hexga_typedef"
path = "src/lib.rs"

[dependencies]