From c0b2f3e2b4c5be936df2b5f0905a60c5c424d415 Mon Sep 17 00:00:00 2001 From: ahirner Date: Sat, 5 Jul 2025 10:10:11 +0200 Subject: [PATCH 1/2] depend on released crates and edition 2024 --- Cargo.toml | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 60a4d99..b10d656 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,13 @@ [package] name = "zino-example" version = "0.1.0" -edition = "2021" +edition = "2024" [dependencies] -zino = { git = "https://github.com/zino-rs/zino.git", features = ["axum"] } -zino-core = { git = "https://github.com/zino-rs/zino.git", features = [ - "apalis", -] } -apalis = { version = "0.6.2", features = ["catch-panic", "retry", "limit"] } -apalis-cron = { version = "0.6.2" } +zino = { version = "0.37", features = ["axum"] } +zino-core = { version = "0.37", features = ["apalis"] } +apalis = { version = "0.7.2", features = ["catch-panic", "retry", "limit"] } +apalis-cron = { version = "0.7.2" } chrono = { version = "0.4", default-features = false, features = ["clock"] } [dependencies.tracing] From 6999827759c97324315192d771402968786db191 Mon Sep 17 00:00:00 2001 From: ahirner Date: Sat, 5 Jul 2025 10:30:32 +0200 Subject: [PATCH 2/2] running the application writes /logs files --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index efe3eb1..74c4012 100644 --- a/.gitignore +++ b/.gitignore @@ -23,3 +23,6 @@ Cargo.lock # Added by cargo /target + +# application logs +/logs