| 1 | [package] |
| 2 | name = "store" |
| 3 | description = "Database schema, migrations, and queries for SQLite and Postgres." |
| 4 | version.workspace = true |
| 5 | edition.workspace = true |
| 6 | rust-version.workspace = true |
| 7 | license.workspace = true |
| 8 | authors.workspace = true |
| 9 | repository.workspace = true |
| 10 | publish.workspace = true |
| 11 | |
| 12 | [dependencies] |
| 13 | model = { workspace = true } |
| 14 | sqlx = { workspace = true } |
| 15 | ulid = { workspace = true } |
| 16 | thiserror = { workspace = true } |
| 17 | |
| 18 | [dev-dependencies] |
| 19 | tokio = { workspace = true } |
| 20 | tempfile = { workspace = true } |
| 21 | |
| 22 | [features] |
| 23 | |
| 24 | postgres-tests = [] |
| 25 | |
| 26 | [lints] |
| 27 | workspace = true |