bounded-counter 0.2.0

Generic Incremental Bounded Counter
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 = "2021"
rust-version = "1.60"
name = "bounded-counter"
version = "0.2.0"
authors = ["Shayne Hartford <shaybox@shaybox.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Generic Incremental Bounded Counter"
homepage = "https://git.shaybox.com/bounded-counter"
readme = "README.md"
keywords = [
    "generic",
    "Incremental",
    "bounded",
    "counter",
]
categories = [
    "data-structures",
    "mathematics",
    "rust-patterns",
]
license = "MIT"
repository = "https://github.com/shaybox/bounded-counter"

[features]
constructor = ["derive_more/constructor"]
default = []
deref = ["derive_more/deref"]
deref_mut = ["derive_more/deref_mut"]

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

[[bin]]
name = "bounded-counter"
path = "src/main.rs"

[dependencies.derive_more]
version = "2"
optional = true

[dependencies.num-traits]
version = "0.2"

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

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

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

[profile.dev]
opt-level = 1

[profile.dev.package."*"]
opt-level = 3