empede/Cargo.toml

22 lines
743 B
TOML
Raw Permalink 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-06-25 16:46:07 +00:00
version = "0.2.0"
2023-04-25 01:26:27 +00:00
edition = "2021"
2023-05-01 23:45:40 +00:00
license = "MIT"
2023-05-03 13:25:44 +00:00
repository = "https://github.com/vijfhoek/empede"
2023-04-25 01:26:27 +00:00
[dependencies]
anyhow = "1.0.70"
2023-05-13 12:51:22 +00:00
askama = { version = "0.12.0", default-features = false, features = ["serde-json"] }
2023-04-25 01:26:27 +00:00
askama_tide = "0.15.0"
async-std = { version = "1.12.0", features = ["attributes"] }
2023-04-27 21:17:40 +00:00
infer = { version = "0.13.0", default-features = false }
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"] }