2024-12-27 23:00:38 +01:00
|
|
|
[package]
|
|
|
|
|
name = "sandbox"
|
|
|
|
|
edition = "2021"
|
2025-10-12 15:09:10 +02:00
|
|
|
publish = false
|
2024-12-27 23:00:38 +01:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "sandbox"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-11-11 17:10:47 +01:00
|
|
|
anyhow = "1.0.100"
|
2024-12-27 23:00:38 +01:00
|
|
|
chrono = "0.4.39"
|
|
|
|
|
fully_pub = "0.1.4"
|
|
|
|
|
serde = "1.0.216"
|
2025-11-11 17:10:47 +01:00
|
|
|
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros"] }
|
2025-10-12 14:02:20 +02:00
|
|
|
sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio", "chrono", "uuid", "migrate"] }
|
2025-03-15 10:21:53 +01:00
|
|
|
sqlxgentools_attrs = { path = "../sqlxgentools_attrs" }
|
2025-11-11 17:10:47 +01:00
|
|
|
sqlxgentools_misc = { path = "../sqlxgentools_misc" }
|
|
|
|
|
|