switch server to rust based since it's much easier

This commit is contained in:
Chris Cochrun 2023-05-26 16:21:21 -05:00
parent 465b2de7f2
commit 09f3ea62f2
7 changed files with 1974 additions and 18 deletions

15
Cargo.toml Normal file
View file

@ -0,0 +1,15 @@
[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]
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"