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