This commit is contained in:
2026-03-21 15:16:40 -04:00
commit ebe1836513
8 changed files with 2628 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "playground-exn"
version = "0.1.0"
edition = "2024"
publish = false
[dependencies]
derive_more = { version = "2.1.1", features = ["display"] }
exn = "0.3.0"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite", "chrono", "uuid"] }
tokio = { version = "1.50.0", features = ["full"] }
uuid = { version = "1.19.0", features = ["v4", "v7", "serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.149"
chrono = { version = "0.4.44", features = ["serde"] }