1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
[package]
name = "mpd_protocol"
version = "1.0.3"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Implementation of MPD client protocol"
repository = "https://github.com/elomatreb/mpd_client"
readme = "README.md"
keywords = ["mpd", "protocol", "client"]
categories = ["network-programming"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
async = ["tokio"]
[dependencies]
ahash = "0.8.9"
bytes = "1.5.0"
nom = "7.1.3"
tokio = { version = "1.36.0", features = ["io-util"], optional = true }
tracing = "0.1.40"
[dev-dependencies]
assert_matches = "1.5.0"
criterion = "0.5.1"
tokio = { version = "1.36.0", features = [
"io-util",
"rt",
"rt-multi-thread",
"macros",
"net",
] }
tokio-test = "0.4.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[bench]]
name = "parse_response"
harness = false
|