| 1 |
[package] |
| 2 |
name = "mt-db" |
| 3 |
license.workspace = true |
| 4 |
version.workspace = true |
| 5 |
edition.workspace = true |
| 6 |
|
| 7 |
[features] |
| 8 |
# Exposes setup-only mutations (e.g. `mod_remove_post`) used by the integration |
| 9 |
# test suite. Off in normal/production builds so handler code cannot call them. |
| 10 |
test-support = [] |
| 11 |
|
| 12 |
[dependencies] |
| 13 |
mt-core = { workspace = true } |
| 14 |
sqlx = { workspace = true } |
| 15 |
chrono = { workspace = true } |
| 16 |
uuid = { workspace = true } |
| 17 |
tracing = { workspace = true } |
| 18 |
serde = { workspace = true } |
| 19 |
|
| 20 |
[lints] |
| 21 |
workspace = true |
| 22 |
|