lexical-write-float 1.0.2

Efficient formatting of floats to strings.
Documentation
[dependencies.lexical-util]
default-features = false
features = ["write-floats"]
version = "1.0.3"

[dependencies.lexical-write-integer]
default-features = false
features = []
version = "1.0.2"

[dependencies.static_assertions]
version = "1"

[dev-dependencies.approx]
version = "0.5.0"

[dev-dependencies.fraction]
version = "0.15.0"

[dev-dependencies.proptest]
version = ">=1.5.0"

[features]
compact = ["lexical-util/compact", "lexical-write-integer/compact"]
default = ["std"]
f128 = ["lexical-util/f128"]
f16 = ["lexical-util/f16"]
format = ["lexical-util/format"]
lint = ["lexical-util/lint", "lexical-write-integer/lint"]
power-of-two = ["lexical-util/power-of-two", "lexical-write-integer/power-of-two"]
radix = ["lexical-util/radix", "lexical-write-integer/radix", "power-of-two"]
std = ["lexical-util/std", "lexical-write-integer/std"]

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

[package]
authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["value-formatting", "encoding", "no-std"]
description = "Efficient formatting of floats to strings."
edition = "2018"
exclude = ["assets/*", "docs/*", "etc/*", "cargo-timing*.html"]
keywords = ["encoding", "lexical", "no_std"]
license = "MIT/Apache-2.0"
name = "lexical-write-float"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/rust-lexical"
version = "1.0.2"

[package.metadata.docs.rs]
features = ["radix", "format"]

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

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

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

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

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

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

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

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

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

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