third_party_rust_humantime/Cargo.toml

26 lines
580 B
TOML
Raw Normal View History

2016-05-20 21:01:11 +00:00
[package]
name = "humantime"
description = """
2018-02-21 21:05:34 +00:00
A parser and formatter for std::time::{Duration, SystemTime}
2016-05-20 21:01:11 +00:00
"""
license = "MIT/Apache-2.0"
2018-02-13 22:19:24 +00:00
readme = "README.md"
2016-11-12 19:23:58 +00:00
keywords = ["time", "human", "human-friendly", "parser", "duration"]
2018-02-13 22:19:24 +00:00
homepage = "https://github.com/tailhook/humantime"
documentation = "https://docs.rs/humantime"
2018-02-21 21:06:31 +00:00
version = "1.1.0"
2018-02-21 20:31:08 +00:00
authors = ["Paul Colomiets <paul@colomiets.name>"]
categories = ["date-and-time"]
2016-05-20 21:01:11 +00:00
[dependencies]
quick-error = "1.0.0"
[lib]
name = "humantime"
path = "src/lib.rs"
2018-02-14 00:01:00 +00:00
[dev-dependencies]
time = "0.1.39"
chrono = "0.4.0"
rand = "0.4.2"