Inital Commit
This commit is contained in:
commit
a309e824be
29 changed files with 2856 additions and 0 deletions
17
server/Cargo.toml
Normal file
17
server/Cargo.toml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
[package]
|
||||
name = "server"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
axum = { version = "0.8.9", features = ["tokio", "http2"] }
|
||||
axum-server = { version = "0.8.0", features = ["tls-rustls"] }
|
||||
tower = "0.5.3"
|
||||
tower-http = { version = "0.6.8", features = ["fs", "cors", "trace"] }
|
||||
rustls = "0.23"
|
||||
rustls-pemfile = "2"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = "0.3"
|
||||
Loading…
Reference in a new issue