-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 766 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 766 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
29
30
31
32
33
[package]
name = "humantime"
description = """A parser and formatter for std::time::{Duration, SystemTime}"""
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["time", "human", "human-friendly", "parser", "duration"]
homepage = "https://github.com/chronotope/humantime"
repository = "https://github.com/chronotope/humantime"
documentation = "https://docs.rs/humantime"
version = "2.2.0"
edition = "2021"
categories = ["date-and-time"]
[features]
mu = []
[dev-dependencies]
bencher = "0.1.5"
time = { version = "0.3", features = ["formatting"] }
chrono = "0.4"
rand = "0.9"
[[bench]]
name = "datetime_format"
harness = false
[[bench]]
name = "datetime_parse"
harness = false
[lints.clippy]
std_instead_of_core = "warn"
std_instead_of_alloc = "warn"