-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathCargo.toml
36 lines (32 loc) · 954 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
35
36
[package]
name = "bytesize"
description = "A utility for human-readable byte count representations"
version = "1.3.0"
authors = [
"Hyunsik Choi <[email protected]>",
"MrCroxx <[email protected]>",
"Rob Ede <[email protected]>",
]
keywords = ["byte", "byte-size", "utility", "human-readable", "format"]
categories = ["development-tools", "filesystem"]
repository = "https://github.com/bytesize-rs/bytesize"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.65"
[features]
default = []
arbitrary = ["dep:arbitrary"]
serde = ["dep:serde"]
[dependencies]
arbitrary = { version = "1", optional = true }
serde = { version = "1", optional = true }
[dev-dependencies]
quickcheck = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
[lints.rust]
rust-2018-idioms = { level = "deny" }
future-incompatible = { level = "deny" }
nonstandard-style = { level = "deny" }
missing-docs = { level = "warn" }