# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.60" name = "itermore" version = "0.7.1" authors = ["Ross MacArthur "] description = "🤸‍♀️ More iterator adaptors" readme = "README.md" keywords = [ "iterator", "chunks", "windows", ] categories = [ "algorithms", "rust-patterns", ] license = "MIT OR Apache-2.0" repository = "https://github.com/rossmacarthur/itermore" [package.metadata.docs.rs] features = ["full"] rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.arrays] version = "0.2.0" optional = true [dev-dependencies.rand] version = "0.8.5" [features] alloc = [] array_chunks = ["dep:arrays"] array_combinations = [ "alloc", "dep:arrays", ] array_combinations_with_reps = [ "alloc", "dep:arrays", ] array_windows = ["dep:arrays"] cartesian_product = [] circular_array_windows = ["array_windows"] collect_array = ["dep:arrays"] combinations = ["alloc"] combinations_with_reps = ["alloc"] default = [] full = [ "std", "array_chunks", "array_combinations_with_reps", "array_combinations", "array_windows", "cartesian_product", "circular_array_windows", "collect_array", "combinations_with_reps", "combinations", "min_max", "next_chunk", "sorted", ] min_max = [] next_chunk = ["dep:arrays"] sorted = ["alloc"] std = ["alloc"]