iter_cartesian 0.1.0

A Cartesian product iterator with double-ended iteration and O(1) length queries.
Documentation
# 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 = "2024"
name = "iter_cartesian"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Cartesian product iterator with double-ended iteration and O(1) length queries."
documentation = "https://docs.rs/iter_cartesian"
readme = "README.md"
keywords = [
    "iterator",
    "cartesian",
    "product",
    "combinatorics",
]
categories = [
    "algorithms",
    "rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://codeberg.org/Sirokov/iter_cartesian"

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

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

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

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

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

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

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

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