feat: file deletion implementation

This commit is contained in:
Paul Makles
2024-11-27 21:54:39 +00:00
parent acc4317246
commit 249749e14d
15 changed files with 267 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
[package]
name = "crond"
name = "revolt-crond"
version = "0.7.19"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <me@insrt.uk>"]
@@ -9,6 +9,14 @@ description = "Revolt Daemon Service: Timed data clean up tasks"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Utility
log = "0.4"
# Async
tokio = { version = "1" }
# Core
revolt-database = { version = "0.7.19", path = "../../core/database" }
revolt-result = { version = "0.7.19", path = "../../core/result" }
revolt-config = { version = "0.7.19", path = "../../core/config" }
revolt-files = { version = "0.7.19", path = "../../core/files" }