fabrica

hanna/fabrica

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