fasttime 0.2.3

Small UTC date/time library based on Ben Joffe's fast 64-bit date algorithm
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 = "2021"
name = "fasttime"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small UTC date/time library based on Ben Joffe's fast 64-bit date algorithm"
documentation = "https://docs.rs/fasttime"
readme = "README.md"
keywords = [
    "date",
    "time",
    "datetime",
    "unix",
    "calendar",
]
categories = ["date-and-time"]
license = "Apache-2.0"
repository = "https://github.com/RustedBytes/fasttime"

[features]
default = ["std"]
python = [
    "pyo3",
    "std",
]
std = []

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

[[test]]
name = "tests"
path = "tests/tests.rs"

[[bench]]
name = "unix_timestamp"
path = "benches/unix_timestamp.rs"
harness = false

[dependencies.pyo3]
version = "0.28"
optional = true

[dev-dependencies.criterion]
version = "0.8"

[dev-dependencies.time]
version = "0.3"