[package]
edition = "2024"
name = "utcize"
version = "0.1.0"
authors = ["Jerry Maheswara<jerrymaheswara@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Normalize any datetime input to UTC. Automatically."
documentation = "https://docs.rs/utcize"
readme = "README.md"
keywords = [
"date",
"time",
"timezone",
"iana",
"zone",
]
categories = ["date-and-time"]
license = "Apache-2.0"
repository = "https://github.com/jerry-maheswara-github/utcize"
[lib]
name = "utcize"
path = "src/lib.rs"
[[test]]
name = "utcize_test"
path = "tests/utcize_test.rs"
[dependencies.chrono]
version = "0.4.41"
[dependencies.chrono-tz]
version = "0.10.3"
[dependencies.thiserror]
version = "2.0.12"