File: Cargo.toml

package info (click to toggle)
rust-lexical-parse-integer 1.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 292 kB
  • sloc: makefile: 2
file content (109 lines) | stat: -rw-r--r-- 2,197 bytes parent folder | download
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.63.0"
name = "lexical-parse-integer"
version = "1.0.5"
authors = ["Alex Huszagh <ahuszagh@gmail.com>"]
build = false
exclude = [
    "assets/*",
    "docs/*",
    "etc/*",
    "cargo-timing*.html",
]
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Efficient parsing of integers from strings."
readme = "README.md"
keywords = [
    "parsing",
    "lexical",
    "no_std",
]
categories = [
    "parsing",
    "no-std",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/Alexhuszagh/rust-lexical"

[package.metadata.docs.rs]
features = [
    "radix",
    "format",
]

[lib]
name = "lexical_parse_integer"
path = "src/lib.rs"

[[test]]
name = "algorithm_tests"
path = "tests/algorithm_tests.rs"

[[test]]
name = "api_tests"
path = "tests/api_tests.rs"

[[test]]
name = "issue_91_tests"
path = "tests/issue_91_tests.rs"

[[test]]
name = "issue_96_tests"
path = "tests/issue_96_tests.rs"

[[test]]
name = "issue_98_tests"
path = "tests/issue_98_tests.rs"

[[test]]
name = "options_tests"
path = "tests/options_tests.rs"

[[test]]
name = "partial_tests"
path = "tests/partial_tests.rs"

[[test]]
name = "util"
path = "tests/util.rs"

[dependencies.lexical-util]
version = "1.0.5"
features = ["parse-integers"]
default-features = false

[dependencies.static_assertions]
version = "1"

[dev-dependencies.proptest]
version = ">=1.5.0"

[dev-dependencies.quickcheck]
version = "1.0.3"

[features]
compact = ["lexical-util/compact"]
default = ["std"]
format = ["lexical-util/format"]
lint = ["lexical-util/lint"]
power-of-two = ["lexical-util/power-of-two"]
radix = [
    "lexical-util/radix",
    "power-of-two",
]
std = ["lexical-util/std"]