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