• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14rust-version = "1.63.0"
15name = "itertools"
16version = "0.14.0"
17authors = ["bluss"]
18build = false
19autolib = false
20autobins = false
21autoexamples = false
22autotests = false
23autobenches = false
24description = "Extra iterator adaptors, iterator methods, free functions, and macros."
25documentation = "https://docs.rs/itertools/"
26readme = "README.md"
27keywords = [
28    "iterator",
29    "data-structure",
30    "zip",
31    "product",
32]
33categories = [
34    "algorithms",
35    "rust-patterns",
36    "no-std",
37    "no-std::no-alloc",
38]
39license = "MIT OR Apache-2.0"
40repository = "https://github.com/rust-itertools/itertools"
41
42[features]
43default = ["use_std"]
44use_alloc = []
45use_std = [
46    "use_alloc",
47    "either/use_std",
48]
49
50[lib]
51name = "itertools"
52path = "src/lib.rs"
53test = false
54bench = false
55
56[[example]]
57name = "iris"
58path = "examples/iris.rs"
59
60[[test]]
61name = "adaptors_no_collect"
62path = "tests/adaptors_no_collect.rs"
63
64[[test]]
65name = "flatten_ok"
66path = "tests/flatten_ok.rs"
67
68[[test]]
69name = "laziness"
70path = "tests/laziness.rs"
71
72[[test]]
73name = "macros_hygiene"
74path = "tests/macros_hygiene.rs"
75
76[[test]]
77name = "merge_join"
78path = "tests/merge_join.rs"
79
80[[test]]
81name = "peeking_take_while"
82path = "tests/peeking_take_while.rs"
83
84[[test]]
85name = "quick"
86path = "tests/quick.rs"
87
88[[test]]
89name = "specializations"
90path = "tests/specializations.rs"
91
92[[test]]
93name = "test_core"
94path = "tests/test_core.rs"
95
96[[test]]
97name = "test_std"
98path = "tests/test_std.rs"
99
100[[test]]
101name = "tuples"
102path = "tests/tuples.rs"
103
104[[test]]
105name = "zip"
106path = "tests/zip.rs"
107
108[[bench]]
109name = "bench1"
110path = "benches/bench1.rs"
111harness = false
112
113[[bench]]
114name = "combinations"
115path = "benches/combinations.rs"
116harness = false
117
118[[bench]]
119name = "combinations_with_replacement"
120path = "benches/combinations_with_replacement.rs"
121harness = false
122
123[[bench]]
124name = "fold_specialization"
125path = "benches/fold_specialization.rs"
126harness = false
127
128[[bench]]
129name = "k_smallest"
130path = "benches/k_smallest.rs"
131harness = false
132
133[[bench]]
134name = "powerset"
135path = "benches/powerset.rs"
136harness = false
137
138[[bench]]
139name = "specializations"
140path = "benches/specializations.rs"
141harness = false
142
143[[bench]]
144name = "tree_reduce"
145path = "benches/tree_reduce.rs"
146harness = false
147
148[[bench]]
149name = "tuple_combinations"
150path = "benches/tuple_combinations.rs"
151harness = false
152
153[[bench]]
154name = "tuples"
155path = "benches/tuples.rs"
156harness = false
157
158[dependencies.either]
159version = "1.0"
160default-features = false
161
162[dev-dependencies.criterion]
163version = "0.4.0"
164features = ["html_reports"]
165
166[dev-dependencies.paste]
167version = "1.0.0"
168
169[dev-dependencies.permutohedron]
170version = "0.2"
171
172[dev-dependencies.quickcheck]
173version = "0.9"
174default-features = false
175
176[dev-dependencies.rand]
177version = "0.7"
178
179[profile.bench]
180debug = 2
181