diff --git a/Cargo.toml b/Cargo.toml index 792b390..5095b44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,20 +13,20 @@ edition = "2024" rust-version = "1.85.0" [dependencies] -serde_json = "1.0.149" -log = "0.4.29" -serde = { version = "1.0.228", features = ["derive"] } -tokio = { version = "1.52.3", features = ["sync", "macros", "rt", "net"] } +serde_json = "1.0.151" +log = "0.4.33" +serde = { version = "1.0.229", features = ["derive"] } +tokio = { version = "1.53.0", features = ["sync", "macros", "rt", "net"] } tokio-util = { version = "0.7.18", features = ["codec"] } -futures = "0.3.32" +futures = "0.3.33" tokio-stream = { version = "0.1.18", features = ["sync"] } -thiserror = "2.0.18" +thiserror = "2.0.19" [dev-dependencies] -env_logger = "0.11.10" -test-log = "0.2.20" -tokio = { version = "1.52.3", features = ["rt-multi-thread", "time", "process"] } -uuid = { version = "1.23.1", features = ["v4"] } +env_logger = "0.11.11" +test-log = "0.2.21" +tokio = { version = "1.53.0", features = ["rt-multi-thread", "time", "process"] } +uuid = { version = "1.24.0", features = ["v4"] } [lib] doctest = false diff --git a/flake.lock b/flake.lock index 2c44f15..650ce4b 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1778869304, - "narHash": "sha256-30sZNZoA1cqF5JNO9fVX+wgiQYjB7HJqqJ4ztCDeBZE=", + "lastModified": 1784497964, + "narHash": "sha256-vlHUuqAcbcH2RKmHbPiuQzbv1pnzzavXnI62RD0bqCU=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d233902339c02a9c334e7e593de68855ad26c4cb", + "rev": "241313f4e8e508cb9b13278c2b0fa25b9ca27163", "type": "github" }, "original": { @@ -29,11 +29,11 @@ ] }, "locked": { - "lastModified": 1779333539, - "narHash": "sha256-lpmN2lrBDZDPjov2cbD3bOOJsI0fkKolKXasYPCqSys=", + "lastModified": 1784526465, + "narHash": "sha256-L37teKC6oINWG4PGZLIqbphMWvSQ0PEz+aWxAk+rIDw=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "672fa5fc5608d5cd82286a6f69aaf84a40b4fe41", + "rev": "58c6334db52d51fc5dd8877c90b01f00cf8a696b", "type": "github" }, "original": { diff --git a/src/ipc.rs b/src/ipc.rs index 7cc323d..4304cc0 100644 --- a/src/ipc.rs +++ b/src/ipc.rs @@ -137,7 +137,7 @@ impl MpvIpc { } } Err(e) => { - log::trace!("Error parsing event, ignoring:\n {:?}\n {:?}", &event, e); + log::trace!("Error parsing event, ignoring:\n {:?}\n {:?}", event, e); } } }