From 0c6b363342265f5ae0ccace5d5a096e72efb76fc Mon Sep 17 00:00:00 2001 From: PikminGuts92 Date: Tue, 26 Mar 2024 22:32:57 -0400 Subject: [PATCH] Add workspace dev dependencies --- Cargo.toml | 4 ++++ apps/cli/p9_scene_tool/Cargo.toml | 3 +-- core/grim/Cargo.toml | 4 ++-- core/grim_midi/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b47468..d4bf04f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,6 +31,10 @@ serde_json = "1.0.113" simplelog = { git = "https://github.com/Drakulix/simplelog.rs", rev = "4ef071d" } thiserror = "1.0.57" +# dev-dependencies +criterion = "0.5.1" +rstest = "0.18.2" + [workspace.lints.rust] dead_code = "allow" deprecated = "allow" diff --git a/apps/cli/p9_scene_tool/Cargo.toml b/apps/cli/p9_scene_tool/Cargo.toml index 77abd8c..d65a911 100644 --- a/apps/cli/p9_scene_tool/Cargo.toml +++ b/apps/cli/p9_scene_tool/Cargo.toml @@ -16,8 +16,7 @@ simplelog = { workspace = true } thiserror = { workspace = true } [dev-dependencies] -criterion = "0.5.1" -rstest = "0.18.2" +rstest = { workspace = true } [lints] workspace = true \ No newline at end of file diff --git a/core/grim/Cargo.toml b/core/grim/Cargo.toml index 915ebaa..badc1a5 100644 --- a/core/grim/Cargo.toml +++ b/core/grim/Cargo.toml @@ -31,8 +31,8 @@ thiserror = { workspace = true } wav = { version = "1.0.0", optional = true } [dev-dependencies] -criterion = "0.5.1" -rstest = "0.18.2" +criterion = { workspace = true } +rstest = { workspace = true } [features] audio = [ "bitstream-io", "fon", "wav" ] diff --git a/core/grim_midi/Cargo.toml b/core/grim_midi/Cargo.toml index 143ebaa..5d591cd 100644 --- a/core/grim_midi/Cargo.toml +++ b/core/grim_midi/Cargo.toml @@ -8,7 +8,7 @@ edition.workspace = true midly = { version = "0.5.3" } [dev-dependencies] -rstest = "0.18.2" +rstest = { workspace = true } [lints] workspace = true \ No newline at end of file