forked from aldanor/fast-float-rust
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.03 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (39 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[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*",
]
# FIXME: rust-version is not supported until 1.56.0.
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"]