cargo-features = ["panic-immediate-abort"]
[package]
edition = "2024"
name = "fastcount"
version = "0.2.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "an incredibly fast, incredibly useless counter"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/CallMeAlphabet/fastcount"
[[bin]]
name = "fastcount"
path = "src/main.rs"
[dependencies.clihelp]
version = "0.1"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
split-debuginfo = "off"
panic = "immediate-abort"
strip = true