empede/Cargo.toml

23 lines
806 B
TOML
Raw Normal View History

2023-04-25 01:26:27 +00:00
[package]
2023-04-27 16:56:10 +00:00
name = "empede"
2023-05-01 23:45:40 +00:00
description = "A web client for MPD"
2023-05-02 09:58:30 +00:00
version = "0.1.9"
2023-04-25 01:26:27 +00:00
edition = "2021"
2023-05-01 23:45:40 +00:00
license = "MIT"
2023-04-25 01:26:27 +00:00
[dependencies]
anyhow = "1.0.70"
2023-04-27 21:17:40 +00:00
askama = { version = "0.12.0", default-features = false }
2023-04-25 01:26:27 +00:00
askama_tide = "0.15.0"
async-std = { version = "1.12.0", features = ["attributes"] }
image = { version = "0.24.6", default-features = false, features = ["bmp", "jpeg", "png", "webp", "webp-encoder", "tiff"] }
2023-04-27 21:17:40 +00:00
infer = { version = "0.13.0", default-features = false }
2023-04-25 01:26:27 +00:00
mpdrs = "0.1.0"
2023-05-02 09:04:08 +00:00
percent-encoding = "2.2.0"
2023-04-25 01:26:27 +00:00
serde = { version = "1.0.160", features = ["derive"] }
serde_qs = "0.12.0"
tide = "0.16.0"
tide-tracing = "0.0.12"
2023-04-27 21:17:40 +00:00
tracing = { version = "0.1.37", default-features = false, features = ["std"] }
tracing-subscriber = { version = "0.3.17", default-features = false, features = ["std", "fmt"] }