relay: added basic implementation of the relay server in axum

This commit is contained in:
Patryk Hegenberg 2024-04-14 23:01:07 +02:00
parent 744283e494
commit d87aa69964
6 changed files with 661 additions and 31 deletions

View file

@ -15,3 +15,12 @@ http-body-util = "0.1"
hyper-util = { version = "0.1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
axum = "0.7.5"
rand = "0.8.5"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
env_logger = "0.11.3"
log = "0.4.21"
dotenv = { version = "0.15.0", features = ["clap"] }
tower-http = "0.5.2"
axum-client-ip = "0.6.0"