[dependencies.ahash]
version = "0.8.11"
[dependencies.async-trait]
version = "0.1.86"
[dependencies.chrono]
version = "0.4.39"
[dependencies.chrono-tz]
version = "0.10.1"
[dependencies.croner]
version = "2.1.0"
[dependencies.itertools]
optional = true
version = "0.14.0"
[dependencies.native_db]
optional = true
version = "0.8.1"
[dependencies.native_model]
optional = true
version = "0.4.20"
[dependencies.serde]
features = ["derive"]
version = "1.0.217"
[dependencies.serde_json]
version = "1.0.138"
[dependencies.sysinfo]
optional = true
version = "0.33.1"
[dependencies.thiserror]
version = "2.0.11"
[dependencies.tokio]
features = ["full"]
version = "1.43.0"
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.19"
[dependencies.ulid]
version = "1.2.0"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "nativedb"
path = "examples/nativedb.rs"
required-features = ["nativedb"]
[[example]]
name = "periodic"
path = "examples/periodic.rs"
[features]
default = ["nativedb"]
nativedb = ["native_db", "native_model", "itertools", "sysinfo"]
[lib]
name = "persistent_scheduler"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A high-performance task scheduling system developed in Rust using Tokio. This system supports task persistence, repeatable tasks, Cron-based scheduling, and one-time tasks, ensuring reliability and flexibility for managing time-based operations in various applications."
documentation = "https://docs.rs/persistent-scheduler/0.3.0/"
edition = "2021"
license-file = "LICENSE"
name = "persistent-scheduler"
readme = "README.md"
repository = "https://github.com/inboxsphere/persistent-scheduler"
version = "0.3.0"