uhrwerk 0.1.0

Simple scheduler for recurring tasks
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 = "uhrwerk"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple scheduler for recurring tasks"
readme = "README.md"
keywords = [
    "scheduler",
    "job",
    "cron",
    "task",
    "async",
]
categories = ["date-and-time"]
license = "Apache-2.0"
repository = "https://codeberg.org/proto-x/uhrwerk"

[features]
async = []
default = ["async"]

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

[dependencies.log]
version = "0.4"

[dependencies.time]
version = "0.3.53"
features = [
    "local-offset",
    "macros",
    "parsing",
]

[dev-dependencies.smol]
version = "2.0"

[dev-dependencies.tokio]
version = "1.5"
features = [
    "rt",
    "time",
]

[lints.clippy]
doc_lazy_continuation = "allow"
manual_async_fn = "allow"
manual_is_multiple_of = "allow"
manual_range_contains = "allow"
tabs_in_doc_comments = "allow"

[lints.rust]
elided_lifetimes_in_paths = "deny"
improper_ctypes_definitions = "deny"
type_alias_bounds = "allow"
unreachable_pub = "warn"

[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1