cantrip 0.4.0

Practical extension methods for standard Rust collections
Documentation
[badges.maintenance]
status = "actively-developed"

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

[dev-dependencies.criterion]
version = "0.5.1"

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

[lints.clippy]
all = "deny"

[package]
authors = ["Martin Ockajak"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["algorithms", "data-structures", "rust-patterns"]
description = "Practical extension methods for standard Rust collections"
edition = "2021"
keywords = ["collection", "functional", "immutable", "group-by", "map"]
license = "MIT OR Apache-2.0"
name = "cantrip"
readme = "README.md"
repository = "https://github.com/martin-ockajak/cantrip"
version = "0.4.0"

[profile.dev]
lto = false
opt-level = 1

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "unwind"

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