qsv-dateparser 0.14.0

Parse dates in string formats that are commonly used. Optimized for qsv.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.93"
name = "qsv-dateparser"
version = "0.14.0"
authors = ["Joel Natividad <joel@datHere.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse dates in string formats that are commonly used. Optimized for qsv."
homepage = "https://github.com/jqnatividad/qsv-dateparser"
readme = "README.md"
keywords = [
    "date",
    "time",
    "datetime",
    "parser",
    "parse",
]
license = "MIT"
repository = "https://github.com/jqnatividad/qsv-dateparser"

[lib]
name = "qsv_dateparser"
path = "src/lib.rs"

[[example]]
name = "convert_to_pacific"
path = "examples/convert_to_pacific.rs"

[[example]]
name = "parse"
path = "examples/parse.rs"

[[example]]
name = "parse_with"
path = "examples/parse_with.rs"

[[example]]
name = "parse_with_timezone"
path = "examples/parse_with_timezone.rs"

[[example]]
name = "str_parse_method"
path = "examples/str_parse_method.rs"

[[bench]]
name = "parse"
path = "benches/parse.rs"
harness = false

[dependencies.anyhow]
version = "1.0"

[dependencies.chrono]
version = "0.4"
features = [
    "clock",
    "std",
]
default-features = false

[dependencies.fast-float2]
version = "0.2"

[dependencies.regex]
version = "1"
features = [
    "std",
    "perf",
]
default-features = false

[dev-dependencies.chrono-tz]
version = "0.10"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]