sacs 0.9.2

Simple Async Cron Scheduler for Tokio
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.86"
name = "sacs"
version = "0.9.2"
authors = ["Oleksii Karpenko <alexkarpenko@yahoo.com>"]
build = false
exclude = [
    ".github/**",
    ".vscode/**",
    "TODO.md",
    "Cargo.lock",
    "target/**",
    ".gitignore",
    "mutants.*/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple Async Cron Scheduler for Tokio"
homepage = "https://github.com/alex-karpenko/sacs"
readme = "README.md"
keywords = [
    "cron",
    "async",
    "job",
    "scheduler",
    "tokio",
]
categories = ["asynchronous"]
license = "MIT"
repository = "https://github.com/alex-karpenko/sacs"

[features]
async-trait = []
tz = ["cron-lite/tz"]

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

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

[dependencies.chrono]
version = "0.4.20"
features = [
    "std",
    "clock",
]
default-features = false

[dependencies.cron-lite]
version = "0.3.1"
default-features = false

[dependencies.futures]
version = "0.3.30"
features = [
    "alloc",
    "std",
    "async-await",
]
default-features = false

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.38.2"
features = [
    "time",
    "macros",
    "sync",
    "signal",
    "rt",
    "rt-multi-thread",
]

[dependencies.tracing]
version = "0.1.40"
features = [
    "std",
    "attributes",
]
default-features = false

[dependencies.uuid]
version = "1.8.0"
features = [
    "fast-rng",
    "v4",
]

[dev-dependencies.ntest]
version = "0.9.3"

[dev-dependencies.opentelemetry]
version = "0.31.0"
features = [
    "trace",
    "logs",
]

[dev-dependencies.opentelemetry-otlp]
version = "0.31.0"
features = [
    "tokio",
    "trace",
    "tonic",
    "grpc-tonic",
]

[dev-dependencies.opentelemetry_sdk]
version = "0.31.0"
features = [
    "rt-tokio",
    "tokio",
]

[dev-dependencies.tonic]
version = "0.14.5"

[dev-dependencies.tracing-opentelemetry]
version = "0.32.1"

[dev-dependencies.tracing-subscriber]
version = "0.3.23"
features = [
    "env-filter",
    "json",
]