[package]
edition = "2021"
rust-version = "1.81"
name = "numeral-format"
version = "0.1.0"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Format numbers with the numeral.js format-string DSL (separators, decimals, abbreviations, currency, percentages, bytes, ordinals). A faithful port of the numeral npm package's formatting. Zero dependencies, no_std."
homepage = "https://github.com/trananhtung/numeral-format"
documentation = "https://docs.rs/numeral-format"
readme = "README.md"
keywords = [
"number",
"format",
"numeral",
"currency",
"humanize",
]
categories = ["value-formatting"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/numeral-format"
[lib]
name = "numeral_format"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"