https://github.com/doumanash/cronchik
Cron expression parser
https://github.com/doumanash/cronchik
cron rust
Last synced: 2 months ago
JSON representation
Cron expression parser
- Host: GitHub
- URL: https://github.com/doumanash/cronchik
- Owner: DoumanAsh
- License: bsl-1.0
- Created: 2021-06-29T00:40:22.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-01T01:18:29.000Z (almost 2 years ago)
- Last Synced: 2025-03-17T09:45:54.313Z (3 months ago)
- Topics: cron, rust
- Language: Rust
- Homepage:
- Size: 25.4 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cronchik
[](https://crates.io/crates/cronchik)
[](https://docs.rs/crate/cronchik/)
[](https://github.com/DoumanAsh/cronchik/actions?query=workflow%3ARust)Cron expression parser.
## Syntax
```
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12)
# │ │ │ │ ┌───────────── day of the week (0 - 6) (Sunday to Saturday)
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
```## Features
- `std` - Enables use of `std` library types and traits.
- `serde` - Enables serialization/deserialization.
- `time` - Enables schedule calculation using `time` crate.