iter_tools 0.29.0

Collection of general purpose tools to iterate. Currently it simply reexports itertools.
Documentation
[dependencies.clone_dyn_types]
default-features = false
features = []
version = "~0.31.0"

[dependencies.itertools]
features = ["use_std"]
version = "~0.11.0"

[dev-dependencies.test_tools]
features = ["full"]
version = "~0.14.0"

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

[features]
default = ["enabled", "iter_trait", "iter_ext"]
enabled = ["clone_dyn_types/enabled"]
full = ["default"]
iter_ext = []
iter_trait = []
no_std = []
use_alloc = ["itertools/use_alloc"]

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

[lints.clippy]
absolute_paths = "allow"
inline_always = "allow"
module_name_repetitions = "allow"
single_call_fn = "allow"
std_instead_of_alloc = "warn"
std_instead_of_core = "warn"
undocumented_unsafe_blocks = "deny"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe-code = "warn"

[lints.rust.future_incompatible]
level = "deny"
priority = -1

[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1

[package]
authors = ["Kostiantyn Wandalen <wandalen@obox.systems>", "Dmytro Kryvoruchko <dmytro.kr@obox.systems>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "development-tools"]
description = """
Collection of general purpose tools to iterate. Currently it simply reexports itertools.
"""
documentation = "https://docs.rs/iter_tools"
edition = "2021"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/iter_tools"
keywords = ["fundamental", "general-purpose"]
license = "MIT"
name = "iter_tools"
readme = "Readme.md"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/iter_tools"
version = "0.29.0"

[package.metadata.docs.rs]
all-features = false
features = ["full"]

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

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