timefilter 0.1.0

Human-readable time string parsing and filtering with comparison operators (e.g., ">=7d", "<2h", "2024-05-01")
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"
name = "timefilter"
version = "0.1.0"
authors = ["lenitain <xt.zhu@qq.com>"]
build = false
include = [
    "Cargo.toml",
    "LICENSE",
    "README.md",
    "src/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = 'Human-readable time string parsing and filtering with comparison operators (e.g., ">=7d", "<2h", "2024-05-01")'
documentation = "https://docs.rs/timefilter"
readme = "README.md"
keywords = [
    "time",
    "parse",
    "filter",
    "human-readable",
    "datetime",
]
categories = [
    "parsing",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/lenitain/timefilter"

[features]
default = []
serde = [
    "dep:serde",
    "chrono/serde",
]

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

[dependencies.chrono]
version = "0.4"

[dependencies.serde]
version = "1.0"
optional = true