-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 813 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 813 Bytes
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
[package]
name = "human-bandwidth"
version = "0.1.4"
edition = "2021"
license = "Apache-2.0"
description = "A library for representing bandwidth speed in a human-readable format."
readme = "README.md"
homepage = "https://github.com/stack-rs/human-bandwidth"
repository = "https://github.com/stack-rs/human-bandwidth"
keywords = ["bandwidth", "data-structures", "network", "human", "serde"]
documentation = "https://docs.rs/human-bandwidth"
categories = ["network-programming", "data-structures"]
rust-version = "1.60"
[dependencies]
bandwidth = { version = "0.3.0" }
serde = { version = "1.0.130", optional = true }
[dev-dependencies]
serde_json = "1.0"
[features]
serde = ["bandwidth/serde", "serde/derive", "dep:serde"]
display-integer = []
binary-system = []
[package.metadata.docs.rs]
all-features = true