1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "lexical-core"
16version = "0.7.6"
17authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
18build = "build.rs"
19exclude = ["fuzz/*", "scripts/*", "ffi/*"]
20autobenches = false
21description = "Lexical, to- and from-string conversion routines."
22documentation = "https://docs.rs/lexical-core"
23readme = "README.md"
24keywords = ["parsing", "lexical", "encoding", "no_std"]
25categories = ["parsing", "encoding", "no-std", "value-formatting"]
26license = "MIT/Apache-2.0"
27repository = "https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core"
28[profile.dev]
29opt-level = 0
30lto = false
31debug = true
32
33[profile.release]
34opt-level = 3
35lto = true
36debug = false
37debug-assertions = false
38[dependencies.arrayvec]
39version = "0.5"
40features = ["array-sizes-33-128"]
41optional = true
42default-features = false
43
44[dependencies.bitflags]
45version = "1.2"
46
47[dependencies.cfg-if]
48version = "1.0"
49
50[dependencies.dtoa]
51version = "0.4"
52optional = true
53
54[dependencies.libm]
55version = "0.2.1"
56optional = true
57
58[dependencies.proptest]
59version = "0.10.1"
60optional = true
61
62[dependencies.quickcheck]
63version = "1.0.3"
64optional = true
65
66[dependencies.ryu]
67version = "1.0"
68optional = true
69
70[dependencies.static_assertions]
71version = "1"
72optional = true
73[dev-dependencies.approx]
74version = "0.4.0"
75
76[features]
77correct = ["arrayvec", "static_assertions", "table"]
78default = ["correct", "ryu", "std"]
79format = ["static_assertions"]
80grisu3 = ["dtoa"]
81noinline = []
82property_tests = ["quickcheck", "proptest"]
83radix = []
84rounding = []
85std = []
86table = []
87trim_floats = []
88unchecked_index = []
89[badges.travis-ci]
90repository = "Alexhuszagh/rust-lexical"
91