diff --git a/Cargo.lock b/Cargo.lock index 68abbae60..a7f73a839 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2271,7 +2271,6 @@ dependencies = [ "axum 0.7.5", "axum-extra", "bcrypt", - "colored", "dotenv", "envy", "futures", diff --git a/bin/core/Cargo.toml b/bin/core/Cargo.toml index 278bccfc1..27d862908 100644 --- a/bin/core/Cargo.toml +++ b/bin/core/Cargo.toml @@ -40,7 +40,6 @@ typeshare.workspace = true tracing.workspace = true reqwest.workspace = true futures.workspace = true -colored.workspace = true anyhow.workspace = true dotenv.workspace = true bcrypt.workspace = true diff --git a/bin/core/src/resource/mod.rs b/bin/core/src/resource/mod.rs index 9a0a67354..03c55366b 100644 --- a/bin/core/src/resource/mod.rs +++ b/bin/core/src/resource/mod.rs @@ -1,7 +1,6 @@ use std::str::FromStr; use anyhow::{anyhow, Context}; -use colored::Colorize; use futures::future::join_all; use monitor_client::{ api::write::CreateTag, @@ -378,12 +377,7 @@ pub async fn update( for FieldDiff { field, from, to } in diff.iter_field_diffs() { diff_log.push_str(&format!( - "\n\n{}: '{field}'\n{}: {}\n{}: {}", - "field".dimmed(), - "from".dimmed(), - from.red(), - "to".dimmed(), - to.green() + "\n\nfield: '{field}'\nfrom: {from}\nto: {to}", )); }