diff options
author | cel 🌸 <cel@blos.sm> | 2023-02-19 02:11:17 +0000 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-02-19 02:11:17 +0000 |
commit | c6378ca77f08a8aaf30fa25c4c02d151bf69edfa (patch) | |
tree | f3d21a7d15f2543c4ccd2eba505a91774833529c /Cargo.toml | |
parent | 0b6d17e87106bb514a62d79d13e8465fd3bffc3a (diff) | |
download | blossom-c6378ca77f08a8aaf30fa25c4c02d151bf69edfa.tar.gz blossom-c6378ca77f08a8aaf30fa25c4c02d151bf69edfa.tar.bz2 blossom-c6378ca77f08a8aaf30fa25c4c02d151bf69edfa.zip |
create initial database migration
Diffstat (limited to '')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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"] } |