aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: ab9843d414d50520f1d5bdc5feb59ffbf38fe2e4 (plain)
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
[package]
authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
autoexamples = false
categories = ["parsing", "no-std"]
description = "Fast float parsing conversion routines."
documentation = "https://docs.rs/minimal-lexical"
edition = "2018"
keywords = ["parsing", "no_std"]
license = "MIT/Apache-2.0"
name = "minimal-lexical"
readme = "README.md"
repository = "https://github.com/Alexhuszagh/minimal-lexical"
version = "0.2.1"
exclude = [
    "assets/*",
    "ci/*",
    "docs/*",
    "etc/*",
    "fuzz/*",
    "examples/*",
    "scripts/*"
]

[features]
default = ["std"]
# Use the standard library.
std = []
# Reduce code size at the cost of performance.
compact = []
# Use the system allocator.
alloc = []
# Add support for nightly-only features.
nightly = []

# Internal only features.
# Enable the lint checks.
lint = []