date-rs 1.6.2

Gregorian calendar date
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.85"
name = "date-rs"
version = "1.6.2"
authors = ["Luke Sneeringer <luke@sneeringer.com>"]
build = false
exclude = [
    "/.github/*",
    "/.prettierrc.yaml",
    "/rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Gregorian calendar date"
documentation = "https://docs.rs/date_rs"
readme = "README.md"
keywords = [
    "date",
    "time",
]
categories = ["date-and-time"]
license = "MIT"
repository = "https://github.com/lukesneeringer/date-rs"

[features]
default = ["serde"]
diesel-pg = [
    "dep:diesel",
    "diesel/postgres",
]
duckdb = ["dep:duckdb"]
easter = []
ord = []
tz = [
    "dep:tz-rs",
    "dep:tzdb",
]

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

[dependencies.diesel]
version = "2"
optional = true

[dependencies.duckdb]
version = "1"
optional = true

[dependencies.log]
version = "0.4"
features = ["kv"]
optional = true

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

[dependencies.strptime]
version = "1"

[dependencies.tz-rs]
version = "0.7"
optional = true

[dependencies.tzdb]
version = "0.7"
features = ["local"]
optional = true

[dev-dependencies.assert2]
version = "0.3"

[dev-dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1"

[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = ["cfg(tarpaulin_include)"]