adding back rust server

This commit is contained in:
Chris Cochrun 2023-06-14 14:02:20 -05:00
parent cc38a6c21a
commit fa2459c42c
3 changed files with 2360 additions and 0 deletions

20
Cargo.toml Normal file
View file

@ -0,0 +1,20 @@
[package]
name = "tfcconnection"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
multer = "2.1.0"
actix = "0.13.0"
actix-rt = "2.8.0"
actix-web = "4.3.1"
env_logger = "0.10.0"
reqwest = { version = "0.11.18", features = ["json", "multipart"] }
serde = "1.0.163"
serde_json = "1.0.96"
async-std = "1.12.0"
actix-multipart = "0.6.0"
futures = "0.3.28"
futures-util = "0.3.28"