File: Cargo.toml.orig

package info (click to toggle)
rust-number-prefix 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 112 kB
  • sloc: makefile: 4
file content (24 lines) | stat: -rw-r--r-- 604 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "number_prefix"
description = "Library for numeric prefixes (kilo, giga, kibi)."
version = "0.4.0"

authors = [ "Benjamin Sago <ogham@bsago.me>" ]
categories = ["algorithms", "no-std"]
documentation = "https://docs.rs/number_prefix"
exclude = ["/README.md", "/LICENCE", "/.rustfmt.toml", "/.travis.yml"]
repository = "https://github.com/ogham/rust-number-prefix"
keywords = ["mathematics", "numerics"]
license = "MIT"
readme = "README.md"

[features]
default = ["std"]
std = []

[package.metadata.docs.rs]
features = ["std"]

[[example]]
name = "conversions"
required-features = ["std"]