feat: init crond crate

This commit is contained in:
Paul Makles
2024-11-27 16:56:30 +00:00
committed by Zomatree
parent 4ea08a189d
commit 9a98c53aff
5 changed files with 37 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
[package]
name = "crond"
version = "0.7.19"
license = "AGPL-3.0-or-later"
authors = ["Paul Makles <me@insrt.uk>"]
edition = "2021"
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]
# Core
revolt-database = { version = "0.7.19", path = "../../core/database" }
revolt-files = { version = "0.7.19", path = "../../core/files" }

View File

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