mirror of https://github.com/tokio-rs/axum
14 lines
343 B
TOML
14 lines
343 B
TOML
[package]
|
|
name = "example-chat"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum = { path = "../../axum", features = ["ws"] }
|
|
futures = "0.3"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tower = { version = "0.4", features = ["util"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version="0.3", features = ["env-filter"] }
|