Files
parse_datetime/Cargo.toml
T

25 lines
606 B
TOML
Raw Permalink Normal View History

2023-04-23 18:40:49 +02:00
[package]
name = "parse_datetime"
description = "parsing human-readable time strings and converting them to a Zoned datetime"
version = "0.15.0"
2023-04-23 18:40:49 +02:00
edition = "2021"
2023-04-23 20:30:52 +02:00
license = "MIT"
repository = "https://github.com/uutils/parse_datetime"
2023-04-25 09:00:51 +02:00
readme = "README.md"
2025-05-13 13:41:26 +08:00
rust-version = "1.71.1"
2023-04-23 18:40:49 +02:00
[dependencies]
2026-03-17 21:23:53 +00:00
winnow = "1.0.0"
num-traits = "0.2.19"
2025-08-16 23:17:41 +08:00
jiff = { version = "0.2.15", default-features = false, features = ["tz-system", "tzdb-bundle-platform", "tzdb-zoneinfo"] }
2025-06-20 09:02:45 +00:00
[dev-dependencies]
rstest = "0.26"
2026-03-31 23:48:09 +02:00
[dev-dependencies.codspeed-criterion-compat]
version = "4.0"
2026-03-31 23:48:09 +02:00
[[bench]]
name = "parse_datetime"
harness = false