floats 0.2.0

f16 and f128 floating point types for compatibility with future Rust versions
Documentation
[[bench]]
harness = false
name = "cast"
path = "benches/cast.rs"
required-features = ["casting"]

[dependencies.casting]
optional = true
version = "0.1.1"

[dev-dependencies.casting]
features = ["nightly"]
optional = false
version = "0.1.1"

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.rstest]
version = "0.26"

[features]
asm = []
default = ["asm"]
nightly = ["casting?/nightly"]

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

[package]
authors = ["Nathaniel McCallum <nathaniel@mccallum.life>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["no-std", "rust-patterns", "mathematics"]
description = "f16 and f128 floating point types for compatibility with future Rust versions"
documentation = "https://docs.rs/floats"
edition = "2021"
homepage = "https://github.com/npmccallum/floats"
keywords = ["float", "f16", "f128", "no_std"]
license = "MIT"
name = "floats"
readme = "README.md"
repository = "https://github.com/npmccallum/floats"
rust-version = "1.60"
version = "0.2.0"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[profile.bench]
opt-level = 1

[profile.test]
opt-level = 1

[[test]]
name = "cast"
path = "tests/cast.rs"

[[test]]
name = "eq"
path = "tests/eq.rs"

[[test]]
name = "platform"
path = "tests/platform.rs"