[package]
edition = "2021"
rust-version = "1.56"
name = "year-helper"
version = "0.2.2"
authors = ["Magic Len <len@magiclen.org>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "This library provides some useful functions to deal with years."
homepage = "https://magiclen.org/year-helper"
readme = "README.md"
keywords = [
"leap",
"year",
"is_leap_year",
"get_days_in_month",
]
categories = [
"no-std",
"date-and-time",
]
license = "MIT"
repository = "https://github.com/magiclen/year-helper"
[lib]
name = "year_helper"
path = "src/lib.rs"
[dependencies]