summary refs log tree commit diff
path: root/crates/messenger_server/Cargo.toml
blob: 897e4bafe8f09dbde781a3f5bddc88094d1cae09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "messenger_server"
version = "0.1.0"
edition = "2021"

[dependencies]
axum = { features = ["ws"], version = "0.6.20" }
futures = "0.3.28"
messenger_common = { path = "../messenger_common" }
serde = "1.0.183"
serde_json = "1.0.104"
thiserror = "1.0.44"
time = { features = ["local-offset", "serde"], version = "0.3.25" }
tokio = { version = "1.29.1", features = [
	"macros",
	"rt",
	"rt-multi-thread",
	"sync",
] }
tower = { version = "0.4.13", features = ["util"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }