-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 747 Bytes
/
Copy pathCargo.toml
File metadata and controls
23 lines (21 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "numan"
version = "0.1.1"
edition = "2021"
rust-version = "1.81"
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."
documentation = "https://docs.rs/numan"
repository = "https://github.com/trananhtung/numan"
homepage = "https://github.com/trananhtung/numan"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["humanize", "number", "compact", "format", "abbreviate"]
categories = ["value-formatting", "no-std", "internationalization", "mathematics"]
authors = ["trananhtung"]
exclude = ["/.github", "/.gitignore"]
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[lints.clippy]
all = "warn"
pedantic = "warn"