rstime 0.1.0

A zero-dependency Rust time library providing date, time, datetime types with formatting, parsing, Unix timestamps, and clock functionality.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "rstime"
version = "0.1.0"
authors = ["Cnkrru <J19323850@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A zero-dependency Rust time library providing date, time, datetime types with formatting, parsing, Unix timestamps, and clock functionality."
documentation = "https://docs.rs/rstime"
readme = "README.md"
keywords = [
    "time",
    "date",
    "datetime",
    "duration",
    "clock",
]
categories = ["date-and-time"]
license = "MIT"
repository = "https://github.com/Cnkrru/rust-package"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[lib]
name = "rstime"
path = "src/lib.rs"

[[example]]
name = "demo"
path = "examples/demo.rs"

[[example]]
name = "test_clock"
path = "examples/test_clock.rs"

[[example]]
name = "test_format"
path = "examples/test_format.rs"

[[example]]
name = "test_parse"
path = "examples/test_parse.rs"

[dependencies]