-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
34 lines (30 loc) · 802 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "human-repr"
version = "1.1.0"
edition = "2021"
authors = ["Rogério Sampaio de Almeida <[email protected]>"]
description = "Generate beautiful human representations of bytes, durations, and even throughputs!"
keywords = ["format", "convert", "bytes", "duration", "throughput"]
categories = ["value-formatting", "date-and-time"]
documentation = "https://docs.rs/human-repr/"
repository = "https://github.com/rsalmei/human-repr"
readme = "README.md"
license = "MIT"
[features]
1024 = []
iec = ["1024"]
space = []
[dependencies]
serde = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
criterion = "0.4"
serde_json = "1"
[[bench]]
name = "counts"
harness = false
[[bench]]
name = "durations"
harness = false
[[bench]]
name = "throughputs"
harness = false