[package]
edition = "2021"
rust-version = "1.86"
name = "timezone-data"
version = "0.1.0"
build = false
exclude = ["/.github"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no_std, no-alloc parser for embedded IANA TZif timezone data: transitions, zone types, POSIX TZ rules, leap seconds, and zone metadata."
readme = "README.md"
keywords = [
"timezone",
"tzdata",
"tzif",
"iana",
"no_std",
]
categories = [
"date-and-time",
"no-std",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/KarpelesLab/timezone-data-rs"
[lib]
name = "timezone_data"
path = "src/lib.rs"
[[test]]
name = "allzones"
path = "tests/allzones.rs"
[[test]]
name = "diff_go"
path = "tests/diff_go.rs"
[[test]]
name = "meta"
path = "tests/meta.rs"
[[test]]
name = "posix"
path = "tests/posix.rs"
[[test]]
name = "zone"
path = "tests/zone.rs"
[dependencies]
[lints.rust]
unsafe_code = "forbid"