dtparse/Cargo.toml

24 lines
559 B
TOML
Raw Normal View History

2018-05-13 16:18:45 -04:00
[package]
name = "dtparse"
2018-09-18 23:04:07 -04:00
version = "1.0.3"
authors = ["Bradlee Speice <bradlee@speice.io>"]
2018-06-17 23:31:25 -04:00
description = "A dateutil-compatible timestamp parser for Rust"
2018-06-25 22:02:15 -04:00
repository = "https://github.com/bspeice/dtparse.git"
2018-06-17 23:31:25 -04:00
readme = "README.md"
categories = ["date-and-time"]
license = "Apache-2.0"
[badges]
travis-ci = { repository = "bspeice/dtparse" }
2018-08-03 21:52:36 -04:00
appveyor = { repository = "bspeice/dtparse" }
maintenance = { status = "passively-maintained" }
2018-06-17 23:31:25 -04:00
[lib]
name = "dtparse"
2018-05-13 16:18:45 -04:00
[dependencies]
2018-05-25 00:00:15 -04:00
chrono = "0.4"
2018-08-11 13:13:12 -04:00
lazy_static = "1.1"
2018-05-26 20:14:30 -04:00
num-traits = "0.2"
2018-08-14 21:53:35 -04:00
rust_decimal = "^0.10.1"