staticstep 0.2.0

Provides truly zero-cost alternatives to `Iterator::step_by` for both incrementing and decrementing any type that satisfies `RangeBounds<T: Copy + Default + Step>`.
Documentation
[badges.appveyor]
repository = "slightlyoutofphase/staticstep"

[badges.maintenance]
status = "actively-developed"

[dependencies]

[package]
categories = ["data-structures", "algorithms"]
description = "Provides truly zero-cost alternatives to `Iterator::step_by` for both incrementing and decrementing any type that satisfies `RangeBounds<T: Copy + Default + Step>`."
documentation = "https://docs.rs/staticstep/"
edition = "2018"
include = ["Cargo.toml", "rustfmt.toml", "src/**/*.rs", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
keywords = ["iterator", "iterators", "step", "range", "ranges"]
license = "MIT OR Apache-2.0"
name = "staticstep"
readme = "README.md"
repository = "https://github.com/slightlyoutofphase/staticstep"
version = "0.2.0"
[profile.bench]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
rpath = false

[profile.dev]
codegen-units = 16
debug = true
debug-assertions = true
incremental = false
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = 3
overflow-checks = false
panic = "abort"
rpath = false