summaryrefslogtreecommitdiff
path: root/server/Cargo.toml
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2024-12-28 10:40:20 +0100
committerJoel Klinghed <the_jk@spawned.biz>2024-12-28 13:57:15 +0100
commit6614f5a6adf3780553d6ebba55361ad913a6c438 (patch)
tree8f178b2f074587d6d461741bae99381a01784127 /server/Cargo.toml
parent3010daec061acd4ee88266a759abab0ac18cd100 (diff)
Database connection
Diffstat (limited to 'server/Cargo.toml')
-rw-r--r--server/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/server/Cargo.toml b/server/Cargo.toml
index b1a4d08..c78b9f7 100644
--- a/server/Cargo.toml
+++ b/server/Cargo.toml
@@ -4,5 +4,8 @@ version = "0.1.0"
edition = "2021"
[dependencies]
+futures = "0.3.31"
rocket = { version = "0.5.1", features = ["json"] }
+rocket_db_pools = { version = "0.2.0", features = ["sqlx_mysql"] }
serde = { version = "1.0", features = ["derive"] }
+sqlx = { version = "0.7.0", default-features = false, features = ["macros", "migrate"] }