cronscheduler 0.1.8

A high-performance async cron scheduler for Rust, supporting both async and blocking tasks with fine-grained scheduling policies.
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 = "cronscheduler"
version = "0.1.8"
authors = ["Davide Listello <davide.listello@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance async cron scheduler for Rust, supporting both async and blocking tasks with fine-grained scheduling policies."
homepage = "https://github.com/davidelistello/cronscheduler"
documentation = "https://docs.rs/cronscheduler"
readme = "README.md"
keywords = [
    "cron",
    "scheduler",
    "async",
    "tokio",
    "task",
]
categories = [
    "asynchronous",
    "concurrency",
    "date-and-time",
]
license = "SSPL-1.0"
repository = "https://github.com/davidelistello/cronscheduler"

[lib]
name = "cronscheduler"
crate-type = [
    "rlib",
    "cdylib",
]
path = "src/lib.rs"

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

[dependencies.anyhow]
version = "1.0.101"

[dependencies.async-trait]
version = "0.1.89"

[dependencies.chrono]
version = "0.4.43"

[dependencies.cron]
version = "0.15.0"

[dependencies.futures]
version = "0.3.31"

[dependencies.num_cpus]
version = "1.17.0"

[dependencies.priority-queue]
version = "2.7.0"

[dependencies.reqwest]
version = "0.13.2"
features = [
    "json",
    "gzip",
]

[dependencies.tokio]
version = "1.49.0"
features = ["full"]

[dependencies.tracing]
version = "0.1.44"

[dependencies.tracing-subscriber]
version = "0.3.22"

[dependencies.uuid]
version = "1.20.0"
features = ["v4"]