[package]
edition = "2021"
rust-version = "1.85"
name = "tzif-codec"
version = "0.1.0"
authors = ["The tzif-codec authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Codec, validator, and builder for RFC 9636 TZif files"
readme = "README.md"
license = "MIT"
repository = "https://github.com/craftguild/tzif-codec"
[lib]
name = "tzif_codec"
path = "src/lib.rs"
[[test]]
name = "builder"
path = "tests/builder.rs"
[[test]]
name = "interoperability_warnings"
path = "tests/interoperability_warnings.rs"
[[test]]
name = "rfc9636_appendix_b"
path = "tests/rfc9636_appendix_b.rs"
[[test]]
name = "security_considerations"
path = "tests/security_considerations.rs"
[[test]]
name = "tzdist"
path = "tests/tzdist.rs"
[dependencies.thiserror]
version = "2"
[dev-dependencies.jiff]
version = "0.2.23"
[lints.clippy]
expect_used = "deny"
indexing_slicing = "deny"
nursery = "deny"
panic = "deny"
pedantic = "deny"
unwrap_used = "deny"
[lints.rust]
unsafe_code = "deny"
warnings = "deny"