[package]
edition = "2024"
name = "fhex"
version = "2.0.0"
authors = ["Rod Vagg <r@va.gg>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hex float conversion: ToHex for formatting, FromHex for parsing. IEEE 754 hexadecimal format (0x1.8p+1)."
readme = "README.md"
keywords = [
"float",
"hex",
"wasm",
"wat",
"ieee754",
]
categories = [
"encoding",
"parsing",
"value-formatting",
]
license = "Apache-2.0"
repository = "https://github.com/rvagg/fhex"
[lib]
name = "fhex"
path = "src/lib.rs"
[dependencies]
[dev-dependencies.proptest]
version = "1.9"
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = ["cfg(kani)"]