[package]
name = "fast-float2"
version = "0.2.4"
authors = ["Ivan Smirnov <i.s.smirnov@gmail.com>", "Alex Huszagh <ahuszagh@gmail.com>"]
repository = "https://github.com/Alexhuszagh/fast-float-rust"
documentation = "https://docs.rs/fast-float2"
description = "Fast floating-point number parser."
keywords = ["parser", "parsing", "parse", "float", "no-std"]
categories = ["parser-implementations", "parsing", "text-processing", "algorithms", "no-std"]
readme = "README.md"
license = "MIT OR Apache-2.0"
autobenches = false
edition = "2018"
exclude = [
"benches/*",
"extras/*",
"clippy.toml",
"rustfmt.toml",
"SECURITY.md",
".git*",
]
rust-version = "1.37"
[features]
default = ["std"]
std = []
[dependencies]
no-panic = { version = "0.1", optional = true }
[dev-dependencies]
lexical-core = "1.0.6"
hexf-parse = "0.2.1"
ryu = "1.0.20"
fastrand = "2.3.0"
num-bigint = "0.5.1"
[profile.release]
lto = "fat"
codegen-units = 1
[package.metadata.docs.rs]
features = ["std"]