[package]
edition = "2024"
name = "date_filter_search"
version = "0.1.1"
authors = ["Catoni Mirko (IMprojtech) <improjtech@gmail.com>"]
build = false
exclude = [
"target/*",
".git/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Date Filter Search is a Rust library that makes working with dates a breeze. It seamlessly converts dates to Unix seconds and Unix seconds back to dates, validates and completes partial date inputs, supports a configurable time zone (Local or UTC), and features robust parsing of both absolute and relative search strings for powerful date filtering."
readme = "README.md"
keywords = [
"date",
"time",
"filter",
"parser",
"unix-timestamp",
]
categories = [
"date-and-time",
"command-line-utilities",
"parsing",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/IMprojtech/Date_Filter_Search"
[lib]
name = "date_filter_search"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[dependencies.chrono]
version = "0.4"
[dependencies.once_cell]
version = "1.17"
[dependencies.regex]
version = "1.10"