Init with webapp template

This commit is contained in:
Quentin Boyer 2023-05-19 11:23:44 +02:00
commit 37331cd24d
13 changed files with 2709 additions and 0 deletions

22
Cargo.toml Normal file
View file

@ -0,0 +1,22 @@
[package]
name = "regalade"
version = "0.1.0"
authors = ["traxys <quentin@familleboyer.net>"]
edition = "2021"
[workspace]
members = [".", "api", "app"]
[dependencies]
anyhow = "1.0.71"
axum = "0.6.18"
base64 = "0.21.0"
config = "0.13.3"
jwt-simple = "0.11.5"
serde = { version = "1.0.163", features = ["derive"] }
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
api = { path = "./api" }
thiserror = "1.0.40"
tower-http = { version = "0.4.0", features = ["cors", "fs"] }