diff options
Diffstat (limited to 'vendored/mpd/Cargo.toml')
| -rw-r--r-- | vendored/mpd/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendored/mpd/Cargo.toml b/vendored/mpd/Cargo.toml new file mode 100644 index 0000000..e3a104f --- /dev/null +++ b/vendored/mpd/Cargo.toml @@ -0,0 +1,19 @@ +[package] +authors = ["Konstantin Stepanov <me@kstep.me>"] +description = "A client library for MPD (music player daemon), like libmpdclient but in Rust" +documentation = "http://kstep.me/rust-mpd/mpd/index.html" +homepage = "https://github.com/kstep/rust-mpd" +license = "MIT/Apache-2.0" +name = "mpd" +repository = "https://github.com/kstep/rust-mpd.git" +version = "0.1.0" +edition = "2018" + +[dependencies] +bufstream = "0.1.1" +rustc-serialize = "0.3.16" +time = "0.2" + +[dev-dependencies] +tempdir = "0.3.5" +unix_socket = "0.5.0" |