Initial commit.

This commit is contained in:
Erik Nordstrøm 2025-02-22 18:45:51 +01:00
commit c0dba9a9ac
4 changed files with 1902 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

1881
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

17
Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "jobs"
version = "0.1.0"
edition = "2021"
[dependencies]
apalis = "0.6.4"
clokwerk = "0.4.0"
cron = "0.15.0"
cron-job = "0.2.0"
cron_clock = "0.8.0"
cron_tab = "0.2.8"
croner = "2.1.0"
delay_timer = "0.11.6"
english-to-cron = "0.1.2"
schedule = "0.1.0"
tokio-cron-scheduler = "0.13.0"

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}