itertools 0.14.0

Extra iterator adaptors, iterator methods, free functions, and macros.
Documentation
[[bench]]
harness = false
name = "bench1"
path = "benches/bench1.rs"

[[bench]]
harness = false
name = "combinations"
path = "benches/combinations.rs"

[[bench]]
harness = false
name = "combinations_with_replacement"
path = "benches/combinations_with_replacement.rs"

[[bench]]
harness = false
name = "fold_specialization"
path = "benches/fold_specialization.rs"

[[bench]]
harness = false
name = "k_smallest"
path = "benches/k_smallest.rs"

[[bench]]
harness = false
name = "powerset"
path = "benches/powerset.rs"

[[bench]]
harness = false
name = "specializations"
path = "benches/specializations.rs"

[[bench]]
harness = false
name = "tree_reduce"
path = "benches/tree_reduce.rs"

[[bench]]
harness = false
name = "tuple_combinations"
path = "benches/tuple_combinations.rs"

[[bench]]
harness = false
name = "tuples"
path = "benches/tuples.rs"

[dependencies.either]
default-features = false
version = "1.0"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.4.0"

[dev-dependencies.paste]
version = "1.0.0"

[dev-dependencies.permutohedron]
version = "0.2"

[dev-dependencies.quickcheck]
default-features = false
version = "0.9"

[dev-dependencies.rand]
version = "0.7"

[[example]]
name = "iris"
path = "examples/iris.rs"

[features]
default = ["use_std"]
use_alloc = []
use_std = ["use_alloc", "either/use_std"]

[lib]
bench = false
name = "itertools"
path = "src/lib.rs"
test = false

[package]
authors = ["bluss"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "rust-patterns", "no-std", "no-std::no-alloc"]
description = "Extra iterator adaptors, iterator methods, free functions, and macros."
documentation = "https://docs.rs/itertools/"
edition = "2018"
keywords = ["iterator", "data-structure", "zip", "product"]
license = "MIT OR Apache-2.0"
name = "itertools"
readme = "README.md"
repository = "https://github.com/rust-itertools/itertools"
rust-version = "1.63.0"
version = "0.14.0"

[profile.bench]
debug = 2

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

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

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

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

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

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

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

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

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

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

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

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