-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 815 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 815 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
[package]
name = "bandwidth"
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
description = "A library for representing bandwidth speed in a variety of units, mimicking the `core::time::Duration` struct."
readme = "README.md"
homepage = "https://github.com/stack-rs/bandwidth"
repository = "https://github.com/stack-rs/bandwidth"
keywords = ["bandwidth", "data-structures", "network", "no-std", "utility"]
documentation = "https://docs.rs/bandwidth"
categories = ["data-structures", "network-programming", "no-std"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rustversion = "1.0"
serde = { version = "1.0.152", default-features = false, optional = true, features = [
"derive",
] }
[features]
default = ["std"]
std = ["serde?/std"]