From c06d357caf6443123010c33abf646a80fd24bd86 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Sun, 7 May 2023 20:43:11 +0200 Subject: [PATCH] fix: remove unneeded dev dependency --- Cargo.toml | 1 - codegen/Cargo.toml | 1 + codegen/src/collect_video_durations.rs | 7 ------- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 96b46b3..c8937b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,6 @@ quick-xml = { version = "0.28.1", features = ["serialize"], optional = true } env_logger = "0.10.0" test-log = "0.2.11" rstest = "0.17.0" -temp_testdir = "0.2.3" tokio-test = "0.4.2" insta = { version = "1.17.1", features = ["ron", "redactions"] } path_macro = "1.0.0" diff --git a/codegen/Cargo.toml b/codegen/Cargo.toml index eb0b165..74525e3 100644 --- a/codegen/Cargo.toml +++ b/codegen/Cargo.toml @@ -2,6 +2,7 @@ name = "rustypipe-codegen" version = "0.1.0" edition = "2021" +publish = false [dependencies] rustypipe = { path = "../" } diff --git a/codegen/src/collect_video_durations.rs b/codegen/src/collect_video_durations.rs index cd9f51a..9a2a16b 100644 --- a/codegen/src/collect_video_durations.rs +++ b/codegen/src/collect_video_durations.rs @@ -372,11 +372,4 @@ mod tests { assert!(!failed); } - - #[test] - fn t_split_duration_text() { - // video duration: - let res = split_duration_txt("دقيقة وثانيتان", true); - dbg!(&res); - } }