add initial chat server stuff
This commit is contained in:
parent
3025f1380c
commit
0e71e9dc5f
18 changed files with 722 additions and 40 deletions
|
@ -6,3 +6,19 @@ edition = "2021"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
foxchat = { path = "../foxchat" }
|
||||
axum = { version = "0.7.4", features = ["macros", "query", "tracing", "ws"] }
|
||||
clap = { version = "4.4.16", features = ["env", "derive"] }
|
||||
sqlx = { version = "0.7.3", features = ["runtime-tokio", "tls-rustls", "postgres", "migrate", "chrono", "json"] }
|
||||
serde = { version = "1.0.195", features = ["derive"] }
|
||||
serde_json = "1.0.111"
|
||||
ulid = { version = "1.1.0", features = ["serde"] }
|
||||
eyre = "0.6.11"
|
||||
color-eyre = "0.6.2"
|
||||
rsa = { version = "0.9.6", features = ["serde", "sha2"] }
|
||||
rand = "0.8.5"
|
||||
toml = "0.8.8"
|
||||
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }
|
||||
tracing-subscriber = "0.3.18"
|
||||
tracing = "0.1.40"
|
||||
tower-http = { version = "0.5.1", features = ["trace"] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue