[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