blob: ffe2f3772bf04748310c4b94ca873de5f6a61486 [file] [log] [blame]
Jakub Kotura425e552020-12-21 17:28:15 +01001# 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 = "itertools"
Joel Galenson6f798712021-04-01 17:03:06 -070016version = "0.10.0"
Jakub Kotura425e552020-12-21 17:28:15 +010017authors = ["bluss"]
18exclude = ["/bors.toml"]
19description = "Extra iterator adaptors, iterator methods, free functions, and macros."
20documentation = "https://docs.rs/itertools/"
21keywords = ["iterator", "data-structure", "zip", "product", "group-by"]
22categories = ["algorithms", "rust-patterns"]
23license = "MIT/Apache-2.0"
24repository = "https://github.com/bluss/rust-itertools"
25[package.metadata.release]
26no-dev-version = true
27[profile.bench]
28debug = true
29
30[lib]
31test = false
32bench = false
33
34[[bench]]
35name = "tuple_combinations"
36harness = false
37
38[[bench]]
39name = "tuples"
40harness = false
41
42[[bench]]
43name = "fold_specialization"
44harness = false
45
46[[bench]]
47name = "combinations_with_replacement"
48harness = false
49
50[[bench]]
51name = "tree_fold1"
52harness = false
53
54[[bench]]
55name = "bench1"
56harness = false
Joel Galenson6f798712021-04-01 17:03:06 -070057
58[[bench]]
59name = "combinations"
60harness = false
61
62[[bench]]
63name = "powerset"
64harness = false
Jakub Kotura425e552020-12-21 17:28:15 +010065[dependencies.either]
66version = "1.0"
67default-features = false
68[dev-dependencies.criterion]
Joel Galenson6f798712021-04-01 17:03:06 -070069version = "=0"
70
71[dev-dependencies.paste]
72version = "1.0.0"
Jakub Kotura425e552020-12-21 17:28:15 +010073
74[dev-dependencies.permutohedron]
75version = "0.2"
76
77[dev-dependencies.quickcheck]
78version = "0.9"
79default-features = false
80
81[dev-dependencies.rand]
82version = "0.7"
83
84[features]
85default = ["use_std"]
Joel Galenson6f798712021-04-01 17:03:06 -070086use_alloc = []
87use_std = ["use_alloc"]