1[package]
2name = "minimal-lexical-fuzz"
3version = "0.0.1"
4authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
5edition = "2018"
6publish = false
7
8[package.metadata]
9cargo-fuzz = true
10
11[dependencies.minimal-lexical]
12path = ".."
13default-features = false
14features = []
15
16[dependencies]
17libfuzzer-sys = "0.2.0"
18
19[features]
20default = ["std"]
21std = ["minimal-lexical/std"]
22compact = ["minimal-lexical/compact"]
23alloc = ["minimal-lexical/alloc"]
24nightly = ["minimal-lexical/nightly"]
25
26[profile.release]
27opt-level = 3
28debug = false
29debug-assertions = false
30lto = true
31
32[[bin]]
33name = "parse-float-f32"
34path = "fuzz_targets/parse-float-f32.rs"
35
36[[bin]]
37name = "parse-float-f64"
38path = "fuzz_targets/parse-float-f64.rs"
39