[package]
edition = "2021"
rust-version = "1.81"
name = "numan"
version = "0.1.1"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Humanize numbers: compact (1.2K), word (1.2 million) and SI metric (1.2 k) notation, plus parsing them back. Zero-dependency, no_std."
homepage = "https://github.com/trananhtung/numan"
documentation = "https://docs.rs/numan"
readme = "README.md"
keywords = [
"humanize",
"number",
"compact",
"format",
"abbreviate",
]
categories = [
"value-formatting",
"no-std",
"internationalization",
"mathematics",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/numan"
[lib]
name = "numan"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"