dtt 0.0.4

A Rust library for parsing, validating, manipulating, and formatting dates and times.
Documentation
[[bench]]
harness = false
name = "benchmark"
path = "benches/criterion.rs"
[dependencies.regex]
version = "1.8.1"

[dependencies.serde]
features = ["derive"]
version = "1.0.163"

[dependencies.time]
version = "0.3.21"
[dev-dependencies.assert_cmd]
version = "2.0.11"

[dev-dependencies.criterion]
version = "0.4.0"

[features]
default = []

[lib]
crate-type = ["lib"]
name = "dtt"
path = "src/lib.rs"

[package]
authors = ["Sebastien Rousseau <sebastian.rousseau@gmail.com>"]
build = "build.rs"
categories = ["date-and-time", "parser-implementations", "value-formatting"]
description = "A Rust library for parsing, validating, manipulating, and formatting dates and times."
documentation = "https://docs.rs/dtt"
edition = "2021"
exclude = ["/.git/*", "/.github/*", "/.gitignore", "/.vscode/*"]
homepage = "https://minifunctions.com/"
include = ["/CONTRIBUTING.md", "/LICENSE-APACHE", "/LICENSE-MIT", "/benches/**", "/build.rs", "/Cargo.toml", "/examples/**", "/README.md", "/src/**", "/tests/**", "/xtask/**"]
keywords = ["dtt", "date", "datetime", "time", "timezone"]
license = "MIT OR Apache-2.0"
name = "dtt"
readme = "README.md"
repository = "https://github.com/sebastienrousseau/dtt.git"
rust-version = "1.69.0"
version = "0.0.4"
[package.metadata.docs.rs]
all-features = true
[profile.bench]
debug = true

[profile.dev]
codegen-units = 256
debug = true
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
panic = "unwind"
rpath = false
strip = false

[profile.release]
codegen-units = 1
debug = false
debug-assertions = false
incremental = false
lto = true
opt-level = "s"
overflow-checks = false
panic = "abort"
rpath = false
strip = "symbols"

[profile.test]
codegen-units = 256
debug = true
debug-assertions = true
incremental = true
lto = false
opt-level = 0
overflow-checks = true
rpath = false
strip = false