initial commit

This commit is contained in:
Timur Gordon
2025-09-01 16:19:02 +02:00
commit 1f7cd4ded8
6 changed files with 1684 additions and 0 deletions

18
Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "hero-job"
version = "0.1.0"
edition = "2021"
description = "Job types and utilities for the Hero ecosystem"
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.0", features = ["v4"] }
thiserror = "1.0"
redis = { version = "0.25", features = ["aio", "tokio-comp"] }
log = "0.4"
[lib]
name = "hero_job"
path = "src/lib.rs"