diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-13 22:41:20 +0100 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2021-12-13 22:41:20 +0100 |
commit | eabeb7ed7b641dea0b8e71ab33ab97b4ed7a4cda (patch) | |
tree | 9cd2f38290fa059020feb049d8a2e2e91adac68b /backend/Cargo.toml | |
parent | 8b4440f7236b0972c1a804eea4c8305b958ad03c (diff) | |
download | planetwars.dev-eabeb7ed7b641dea0b8e71ab33ab97b4ed7a4cda.tar.xz planetwars.dev-eabeb7ed7b641dea0b8e71ab33ab97b4ed7a4cda.zip |
start implementing basic login functionality
Diffstat (limited to 'backend/Cargo.toml')
-rw-r--r-- | backend/Cargo.toml | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 42933e5..b44b5ad 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -6,11 +6,18 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rocket = "0.4.10" -diesel = { version = "1.4.4", features = ["postgres"] } +rocket = { version= "0.5.0-rc.1", features = ["json"] } +diesel = { version = "1.4.4", features = ["postgres", "r2d2"] } dotenv = "0.15.0" +rust-argon2 = "0.8" +rand = "0.8.4" +serde = { version = "1.0", features = ["derive"] } +serde_bytes = "0.11" +chrono = { version = "0.4", features = ["serde"] } +serde_json = "1.0" +base64 = "0.13.0" -[dependencies.rocket_contrib] -version = "0.4.10" -default-features = false + +[dependencies.rocket_sync_db_pools] +version = "0.1.0-rc.1" features = ["diesel_postgres_pool"]
\ No newline at end of file |