15 lines
456 B
TOML
15 lines
456 B
TOML
[package]
|
|
name = "yunohome"
|
|
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"
|
|
tower = "0.4"
|
|
tokio = { version = "1", features = [ "full" ] }
|
|
hyper = { version = "0.14", features = [ "full" ] }
|
|
axum = { version = "0.6", features = [ "headers", "http2", "macros", "tracing" ] }
|
|
clap = { version = "4.3", features = [ "derive" ] }
|
|
snafu = "0.7" |