From 6c06d63c57c3d2abf9a40e4dc5e002022431e0d6 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 18 May 2024 22:21:10 +0100 Subject: [PATCH] chore: remove dependency pretty_assertions --- Cargo.toml | 1 - crates/config/Cargo.toml | 1 - crates/git/Cargo.toml | 1 - crates/server/Cargo.toml | 1 - crates/server/src/config/tests.rs | 1 - 5 files changed, 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1553ddbe..98a4e5e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,4 +76,3 @@ tokio = { version = "1.37" } # Testing assert2 = "0.3" -pretty_assertions = "1.4" diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 5f9d4b91..d97d9d77 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -58,7 +58,6 @@ derive_more = { workspace = true } [dev-dependencies] # # Testing assert2 = { workspace = true } -pretty_assertions = { workspace = true } [lints.clippy] nursery = { level = "warn", priority = -1 } diff --git a/crates/git/Cargo.toml b/crates/git/Cargo.toml index 71b3e013..da09decb 100644 --- a/crates/git/Cargo.toml +++ b/crates/git/Cargo.toml @@ -60,7 +60,6 @@ derive_more = { workspace = true } # [dev-dependencies] # # Testing # assert2 = { workspace = true } -# pretty_assertions = { workspace = true } [lints.clippy] nursery = { level = "warn", priority = -1 } diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index bbd55981..43b80e39 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -61,7 +61,6 @@ tokio = { workspace = true } [dev-dependencies] # Testing assert2 = { workspace = true } -pretty_assertions = { workspace = true } [lints.clippy] nursery = { level = "warn", priority = -1 } diff --git a/crates/server/src/config/tests.rs b/crates/server/src/config/tests.rs index 56ca7e12..c19a48e7 100644 --- a/crates/server/src/config/tests.rs +++ b/crates/server/src/config/tests.rs @@ -8,7 +8,6 @@ use git_next_config::{ }; use git_next_git::{self as git, Generation, GitRemote}; use kxio::fs; -use pretty_assertions::assert_eq; use crate::gitforge::tests::common;