15 lines
333 B
TOML
15 lines
333 B
TOML
[package]
|
|
name = "sandbox"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "sandbox"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.39"
|
|
fully_pub = "0.1.4"
|
|
serde = "1.0.216"
|
|
sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio", "chrono", "uuid", "migrate"] }
|
|
sqlxgentools_attrs = { path = "../sqlxgentools_attrs" }
|