diff --git a/Cargo.toml b/Cargo.toml index 1553ddb..98a4e5e 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 5f9d4b9..d97d9d7 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 71b3e01..da09dec 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 bbd5598..43b80e3 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 56ca7e1..c19a48e 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;