1
0

working proof of concept

This commit is contained in:
2024-02-03 00:36:56 +00:00
parent 5bdf7a7250
commit a8076f726f
13 changed files with 2539 additions and 0 deletions

18
Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "minecraft_schematics_web"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-files = "0.6.5"
actix-multipart = "0.6.1"
actix-web = "4.4.1"
clap = { version = "4.4.18", features = ["env", "derive"] }
dotenv = { version = "0.15.0", features = ["clap"] }
futures-util = "0.3.30"
serde = { version = "1.0.196", features = ["derive"] }
tera = "1.19.1"
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = ["full"] }