1 | [package] |
2 | authors = ["Alex Huszagh <ahuszagh@gmail.com>" ] |
3 | autoexamples = false |
4 | categories = ["parsing" , "no-std" ] |
5 | description = "Fast float parsing conversion routines." |
6 | documentation = "https://docs.rs/minimal-lexical" |
7 | edition = "2018" |
8 | keywords = ["parsing" , "no_std" ] |
9 | license = "MIT/Apache-2.0" |
10 | name = "minimal-lexical" |
11 | readme = "README.md" |
12 | repository = "https://github.com/Alexhuszagh/minimal-lexical" |
13 | version = "0.2.1" |
14 | exclude = [ |
15 | "assets/*" , |
16 | "ci/*" , |
17 | "docs/*" , |
18 | "etc/*" , |
19 | "fuzz/*" , |
20 | "examples/*" , |
21 | "scripts/*" |
22 | ] |
23 | |
24 | [features] |
25 | default = ["std" ] |
26 | # Use the standard library. |
27 | std = [] |
28 | # Reduce code size at the cost of performance. |
29 | compact = [] |
30 | # Use the system allocator. |
31 | alloc = [] |
32 | # Add support for nightly-only features. |
33 | nightly = [] |
34 | |
35 | # Internal only features. |
36 | # Enable the lint checks. |
37 | lint = [] |
38 | |