summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-30 19:26:07 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-30 19:26:07 +0300
commit228879a2c390e08c227b7b1b2a5f44e1c34bf4e3 (patch)
treeb1af3a0008ead34805e267c5d9c356873952961b /Cargo.toml
parent934fb31059da10fa843d96a10c37f181eaa89456 (diff)
feat: add automatic migrations
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b15542f..e822019 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,7 +12,7 @@ lettre = "0.11.17"
reqwest = { version = "0.12.22", features = ["json"] }
serde = "1.0.219"
serde_json = "1.0.140"
-sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio-native-tls"] }
+sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio-native-tls", "migrate", "macros"] }
tera = "1.20.0"
tokio = "1.46.1"
tokio-task-scheduler = "1.0.0"
@@ -35,9 +35,10 @@ reqwest = "0.12.22"
serde = "1.0.219"
serde_derive = "1.0.219"
serde_json = "1.0.140"
-sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio-native-tls"] }
+sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio-native-tls", "macros"] }
tera = "1.20.0"
tokio = "1.46.1"
tokio-task-scheduler = "1.0.0"
tower-http = "0.6.6"
uuid = "1.17.0"
+tempfile = "3.10"