-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
37 lines (35 loc) · 823 Bytes
/
Cargo.toml
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 <[email protected]>"]
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 = []