blob: 525cae5f3b60007fcb5dd7d583638d911662579b [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"
David LeGareb72e9052022-03-02 16:21:08 +000016version = "0.10.3"
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/"
David LeGareb72e9052022-03-02 16:21:08 +000021readme = "README.md"
Jakub Kotura425e552020-12-21 17:28:15 +010022keywords = ["iterator", "data-structure", "zip", "product", "group-by"]
23categories = ["algorithms", "rust-patterns"]
24license = "MIT/Apache-2.0"
Joel Galensonb593e252021-06-21 13:15:57 -070025repository = "https://github.com/rust-itertools/itertools"
Jakub Kotura425e552020-12-21 17:28:15 +010026[package.metadata.release]
27no-dev-version = true
28[profile.bench]
29debug = true
30
31[lib]
32test = false
33bench = false
34
35[[bench]]
36name = "tuple_combinations"
37harness = false
38
39[[bench]]
40name = "tuples"
41harness = false
42
43[[bench]]
44name = "fold_specialization"
45harness = false
46
47[[bench]]
48name = "combinations_with_replacement"
49harness = false
50
51[[bench]]
52name = "tree_fold1"
53harness = false
54
55[[bench]]
56name = "bench1"
57harness = false
Joel Galenson6f798712021-04-01 17:03:06 -070058
59[[bench]]
60name = "combinations"
61harness = false
62
63[[bench]]
64name = "powerset"
65harness = false
Jakub Kotura425e552020-12-21 17:28:15 +010066[dependencies.either]
67version = "1.0"
68default-features = false
69[dev-dependencies.criterion]
Joel Galenson6f798712021-04-01 17:03:06 -070070version = "=0"
71
72[dev-dependencies.paste]
73version = "1.0.0"
Jakub Kotura425e552020-12-21 17:28:15 +010074
75[dev-dependencies.permutohedron]
76version = "0.2"
77
78[dev-dependencies.quickcheck]
79version = "0.9"
80default-features = false
81
82[dev-dependencies.rand]
83version = "0.7"
84
85[features]
86default = ["use_std"]
Joel Galenson6f798712021-04-01 17:03:06 -070087use_alloc = []
88use_std = ["use_alloc"]