Compare commits
3 Commits
0a802a9d76
...
7470a59404
Author | SHA1 | Date |
---|---|---|
Oystein Kristoffer Tveit | 7470a59404 | |
Oystein Kristoffer Tveit | dbfe543f59 | |
Oystein Kristoffer Tveit | 61e20f4923 |
|
@ -14,14 +14,14 @@ rust-version = "1.75"
|
||||||
serde_json = "1.0.104"
|
serde_json = "1.0.104"
|
||||||
log = "0.4.19"
|
log = "0.4.19"
|
||||||
serde = { version = "1.0.197", features = ["derive"] }
|
serde = { version = "1.0.197", features = ["derive"] }
|
||||||
# TODO: downscale features once implementation is stable
|
tokio = { version = "1.37.0", features = ["sync", "macros", "rt", "net"] }
|
||||||
tokio = { version = "1.37.0", features = ["full"] }
|
|
||||||
tokio-util = { version = "0.7.10", features = ["codec"] }
|
tokio-util = { version = "0.7.10", features = ["codec"] }
|
||||||
futures = "0.3.30"
|
futures = "0.3.30"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.10.0"
|
env_logger = "0.10.0"
|
||||||
test-log = "0.2.15"
|
test-log = "0.2.15"
|
||||||
|
tokio = { version = "1.37.0", features = ["rt-multi-thread", "time"] }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
doctest = false
|
doctest = false
|
11
src/api.rs
11
src/api.rs
|
@ -291,18 +291,9 @@ pub struct Mpv {
|
||||||
command_sender: tokio::sync::mpsc::Sender<(MpvIpcCommand, oneshot::Sender<MpvIpcResponse>)>,
|
command_sender: tokio::sync::mpsc::Sender<(MpvIpcCommand, oneshot::Sender<MpvIpcResponse>)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
// impl Drop for Mpv {
|
|
||||||
// fn drop(&mut self) {
|
|
||||||
// self.disconnect();
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
impl fmt::Debug for Mpv {
|
impl fmt::Debug for Mpv {
|
||||||
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||||
// TODO:
|
fmt.debug_struct("Mpv").finish()
|
||||||
fmt.debug_struct("Mpv")
|
|
||||||
.field("name", &"TODO: name")
|
|
||||||
.finish()
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue