feat: add basic clock in tool

This commit is contained in:
2025-03-25 20:15:54 +01:00
commit 08a36c010e
11 changed files with 3033 additions and 0 deletions

22
crates/clockin/Cargo.toml Normal file
View File

@@ -0,0 +1,22 @@
[package]
name = "clockin"
edition = "2021"
version.workspace = true
[dependencies]
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
clap.workspace = true
dotenv.workspace = true
axum.workspace = true
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "time"] }
uuid = { version = "1.7.0", features = ["v4"] }
tower-http = { version = "0.5.2", features = ["cors", "trace"] }
dirs = "6.0.0"
serde_json = "1.0.140"
chrono = { version = "0.4.40", features = ["serde"] }