Skip to main content

max / makenotwork

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