aboutsummaryrefslogtreecommitdiff
path: root/backend/Cargo.toml
diff options
context:
space:
mode:
authorIlion Beyst <ilion.beyst@gmail.com>2021-12-13 15:43:47 +0100
committerIlion Beyst <ilion.beyst@gmail.com>2021-12-13 15:43:47 +0100
commit8b4440f7236b0972c1a804eea4c8305b958ad03c (patch)
tree4526fdda6de75b2ee380bf41d306da5c7bb8b6cb /backend/Cargo.toml
parent931bf0fbed9670c356fdeae0f2e4559ff3e59ebb (diff)
downloadplanetwars.dev-8b4440f7236b0972c1a804eea4c8305b958ad03c.tar.xz
planetwars.dev-8b4440f7236b0972c1a804eea4c8305b958ad03c.zip
setup basic rocket+diesel app
Diffstat (limited to 'backend/Cargo.toml')
-rw-r--r--backend/Cargo.toml16
1 files changed, 16 insertions, 0 deletions
diff --git a/backend/Cargo.toml b/backend/Cargo.toml
new file mode 100644
index 0000000..42933e5
--- /dev/null
+++ b/backend/Cargo.toml
@@ -0,0 +1,16 @@
+[package]
+name = "mozaic4-backend"
+version = "0.0.0"
+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"] }
+dotenv = "0.15.0"
+
+[dependencies.rocket_contrib]
+version = "0.4.10"
+default-features = false
+features = ["diesel_postgres_pool"] \ No newline at end of file