[dependencies.async-trait]
version = "0.1.83"
[dependencies.chrono]
version = "0.4.38"
[dependencies.chrono-tz]
version = "0.10.0"
[dependencies.croner]
version = "2.0.6"
[dependencies.itertools]
optional = true
version = "0.13.0"
[dependencies.native_db]
optional = true
version = "0.8.1"
[dependencies.native_model]
optional = true
version = "0.4.20"
[dependencies.once_cell]
optional = true
version = "1.19.0"
[dependencies.serde]
features = ["derive"]
version = "1.0.214"
[dependencies.serde_json]
version = "1.0.132"
[dependencies.sysinfo]
optional = true
version = "0.32.0"
[dependencies.thiserror]
version = "1.0.68"
[dependencies.tokio]
features = ["full"]
version = "1.41.0"
[dependencies.tracing]
version = "0.1.40"
[dependencies.tracing-subscriber]
version = "0.3.18"
[dependencies.ulid]
version = "1.1.2"
[[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", "once_cell", "itertools", "sysinfo"]
[lib]
name = "persistent_scheduler"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = 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.1.9/"
edition = "2021"
license-file = "LICENSE"
name = "persistent-scheduler"
readme = "README.md"
repository = "https://github.com/inboxsphere/persistent-scheduler"
version = "0.1.9"