14 lines
451 B
TOML
14 lines
451 B
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
futures = "0.3.28"
|
|
tokio = { version = "1.28.0", features = ["full"] }
|
|
tokio-stream = { version = "0.1.14", features = ["full"] }
|
|
tokio-util = { version = "0.7.8", features = ["full"] }
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|