diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2022-08-07 20:47:54 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2022-08-07 20:47:54 -0400 |
| commit | ea77a8cf9c012fcd877d842fec85b0b5a442952c (patch) | |
| tree | 7f209c030b97a957497f152d161a9d7035311132 /vendored/mpd/Cargo.toml | |
| parent | 0de7e9ac43f88aae3750ecfe25b5454fdd1ad015 (diff) | |
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" |