[package]
edition = "2024"
name = "unsigned-float"
version = "0.1.4"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unsigned floating-point formats for non-negative numeric domains."
readme = "README.md"
keywords = [
"float",
"unsigned",
"no-std",
"numeric",
"fp",
]
categories = [
"data-structures",
"mathematics",
"no-std",
"science",
]
license = "MIT"
repository = "https://github.com/MicroPerceptron/ufloat"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
f128 = []
f16 = []
nightly = [
"f16",
"f128",
]
soft-float = []
[lib]
name = "unsigned_float"
path = "src/lib.rs"
[[bench]]
name = "arithmetic"
path = "benches/arithmetic.rs"
[dependencies]