Start backend with rocket.rs

This commit is contained in:
2021-08-15 12:07:02 +02:00
parent cb44ae4184
commit 28011b8f93
5 changed files with 1440 additions and 0 deletions

10
rs/Cargo.toml Normal file
View File

@@ -0,0 +1,10 @@
[package]
name = "schach"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "0.5.0-rc.1", features = ["json"] }
serde = "1.0.127"