From c6378ca77f08a8aaf30fa25c4c02d151bf69edfa Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Sun, 19 Feb 2023 02:11:17 +0000 Subject: create initial database migration --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 9ecda36..417dd4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,8 @@ edition = "2021" [dependencies] rocket = { version = "0.5.0-rc.2", features = ["json"] } +sqlx = { version = "0.5", default-features = false, features = ["macros", "offline", "migrate"] } +rocket_db_pools = { version = "0.1.0-rc.2", features = ["sqlx_sqlite"] } reqwest = { version = "0.11", features = ["json"] } mastodon-async = "1.1" tokio = { version = "1", features = ["full"] } -- cgit