[dependencies]
[package]
categories = ["value-formatting", "science"]
description = "Formats value using the appropriate SI scale.\n\n```\nuse si_scale::helpers::{seconds, seconds3};\n\nlet actual = format!(\"{}\", seconds(1.3e-5));\nlet expected = \"13 µs\";\nassert_eq!(actual, expected);\n\nlet actual = format!(\"{}\", seconds3(1.3e-5));\nlet expected = \"13.000 µs\";\nassert_eq!(actual, expected);\n```\n"
documentation = "https://docs.rs/si-scale"
edition = "2018"
exclude = ["/.github", "/.travis.yml", "/appveyor.yml"]
homepage = "https://github.com/u0xy/si-scale"
keywords = ["units", "pretty", "human", "number", "si-units"]
license = "MIT/Apache-2.0"
name = "si-scale"
readme = "README.md"
repository = "https://github.com/u0xy/si-scale"
version = "0.1.0"