half 1.4.0

Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types.
Documentation
[package]

name = "half"

version = "1.4.0" # Remember to keep in sync with html_root_url crate attribute

authors = ["Kathryn Long <squeeself@gmail.com>"]

description = "Half-precision floating point f16 and bf16 types for Rust implementing the IEEE 754-2008 standard binary16 and bfloat16 types."

repository = "https://github.com/starkat99/half-rs"

readme = "README.md"

keywords = ["f16", "bfloat16", "no_std"]

license = "MIT/Apache-2.0"

categories = ["no-std", "data-structures", "encoding"]

edition = "2018"



[badges]

appveyor = { repository = "starkat99/half-rs" }

travis-ci = { repository = "starkat99/half-rs" }

maintenance = { status = "passively-maintained" }



[features]

std = []

use-intrinsics = []

serialize = ["serde"] # Deprecated. Use serde directly.



[dependencies.serde]

version = "1.0"

optional = true

default-features = false

features = ["derive"]



[package.metadata.docs.rs]

features = ["std", "serde"]



[dev-dependencies]

criterion = "0.3"

quickcheck = "0.9"

quickcheck_macros = "0.8"

rand = "0.7"

version-sync = "0.8.1"



[[bench]]

name = "convert"

harness = false