tasklet 0.3.1

An asynchronous task scheduling library
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"
rust-version = "1.90.0"
name = "tasklet"
version = "0.3.1"
authors = ["Stavros Grigoriou <unix121@protonmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An asynchronous task scheduling library"
readme = "README.md"
keywords = [
    "cron",
    "scheduling",
    "tasks",
    "tasklet",
    "async",
]
license = "MIT"
repository = "https://github.com/stav121/tasklet"

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

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

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

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

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

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

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

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

[dependencies.chrono]
version = "0.4.42"

[dependencies.cron]
version = "0.15.0"

[dependencies.futures]
version = "0.3.31"

[dependencies.log]
version = "0.4.29"

[dependencies.thiserror]
version = "2.0.17"

[dependencies.tokio]
version = "1.48.0"
features = [
    "rt",
    "sync",
    "time",
    "macros",
]

[dev-dependencies.simple_logger]
version = "5.1.0"

[dev-dependencies.tokio]
version = "1.48.0"
features = [
    "rt-multi-thread",
    "macros",
]

[dev-dependencies.tokio-test]
version = "0.4.4"