dtparse/Cargo.toml

27 lines
680 B
TOML
Raw Normal View History

2018-05-13 16:18:45 -04:00
[package]
name = "dtparse"
2023-08-24 19:07:54 -04:00
version = "2.0.0"
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"
exclude = ["/*.py"]
2018-06-17 23:31:25 -04:00
[badges]
travis-ci = { repository = "bspeice/dtparse" }
2018-08-03 21:52:36 -04:00
maintenance = { status = "passively-maintained" }
2018-06-17 23:31:25 -04:00
[lib]
name = "dtparse"
2018-05-13 16:18:45 -04:00
[dependencies]
2023-06-30 06:34:39 -04:00
chrono = { version = "0.4.24", default-features = false, features = ["clock"] }
2023-03-24 22:12:57 -04:00
lazy_static = "1.4.0"
num-traits = "0.2.15"
rust_decimal = { version = "1.29.1", default-features = false }
2022-06-15 22:16:15 -04:00
[dev-dependencies]
2023-03-24 22:12:57 -04:00
base64 = "0.21.0"