[package]
edition = "2021"
rust-version = "1.74"
name = "zic-rs"
version = "0.1.0"
authors = ["infinityabundance"]
build = false
include = [
"src/**/*",
"/Cargo.toml",
"/README.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
"/CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A memory-safe Rust timezone compiler for IANA tzdata, producing TZif files with deterministic output and reference-zic comparison."
homepage = "https://github.com/infinityabundance/zic-rs"
readme = "README.md"
keywords = [
"timezone",
"tzif",
"zoneinfo",
"iana",
"zic",
]
categories = [
"command-line-utilities",
"date-and-time",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/infinityabundance/zic-rs"
[features]
ecosystem-tests = ["dep:tz-rs"]
[lib]
name = "tzcompile"
path = "src/lib.rs"
[[bin]]
name = "zic-rs"
path = "src/main.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tz-rs]
version = "0.7"
optional = true
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]
[profile.release]
overflow-checks = true