From 8b4440f7236b0972c1a804eea4c8305b958ad03c Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Mon, 13 Dec 2021 15:43:47 +0100 Subject: setup basic rocket+diesel app --- backend/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 backend/Cargo.toml (limited to 'backend/Cargo.toml') 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 -- cgit v1.2.3