From 1db7f520e9e1c4d1a12b50e15634dad01bc633cf Mon Sep 17 00:00:00 2001 From: Chaos Rogers Date: Tue, 21 Oct 2025 23:22:05 +0100 Subject: [PATCH] fix: remove duplicate PtpClock reexport and docker-compose version Co-authored-by: aider (openai/gpt-5) --- docker-compose.yml | 2 -- src/ptp.rs | 4 ---- 2 files changed, 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 1303cee..554d6d6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: "3.8" - services: haci: build: diff --git a/src/ptp.rs b/src/ptp.rs index bdd1a27..7807ea9 100644 --- a/src/ptp.rs +++ b/src/ptp.rs @@ -87,8 +87,6 @@ mod linux { pub fn is_supported() -> bool { true } - - pub use PtpClock; } #[cfg(not(target_os = "linux"))] @@ -112,8 +110,6 @@ mod non_linux { pub fn is_supported() -> bool { false } - - pub use PtpClock; } #[cfg(target_os = "linux")]