1[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" 13version = "0.2.1" 14exclude = [ 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 = [] 38