From 2ef1e2f94b1b1189d946c9bf353e968fe54a84a5 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Wed, 13 Mar 2024 00:50:26 -0700 Subject: [PATCH] Update yansi to 1.0.1. --- contrib/db_pools/lib/src/database.rs | 2 +- contrib/sync_db_pools/lib/src/connection.rs | 4 ++-- core/lib/Cargo.toml | 2 +- core/lib/src/request/request.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/contrib/db_pools/lib/src/database.rs b/contrib/db_pools/lib/src/database.rs index fa5cce34..6f9ae407 100644 --- a/contrib/db_pools/lib/src/database.rs +++ b/contrib/db_pools/lib/src/database.rs @@ -125,7 +125,7 @@ pub trait Database: From + DerefMut + Send + Sy let dbtype = std::any::type_name::().bold().primary(); error!("Attempted to fetch unattached database `{}`.", dbtype); info_!("`{}{}` fairing must be attached prior to using this database.", - dbtype.linger(), "::init()".clear()); + dbtype.linger(), "::init()".resetting()); None } } diff --git a/contrib/sync_db_pools/lib/src/connection.rs b/contrib/sync_db_pools/lib/src/connection.rs index 73c6913b..0d4ac19f 100644 --- a/contrib/sync_db_pools/lib/src/connection.rs +++ b/contrib/sync_db_pools/lib/src/connection.rs @@ -226,10 +226,10 @@ impl Sentinel for Connection { if rocket.state::>().is_none() { let conn = std::any::type_name::().primary().bold(); error!("requesting `{}` DB connection without attaching `{}{}`.", - conn, conn.linger(), "::fairing()".clear()); + conn, conn.linger(), "::fairing()".resetting()); info_!("Attach `{}{}` to use database connection pooling.", - conn.linger(), "::fairing()".clear()); + conn.linger(), "::fairing()".resetting()); return true; } diff --git a/core/lib/Cargo.toml b/core/lib/Cargo.toml index 4a1ea1d7..d16abcb5 100644 --- a/core/lib/Cargo.toml +++ b/core/lib/Cargo.toml @@ -37,7 +37,7 @@ uuid_ = { package = "uuid", version = "1", optional = true, features = ["serde"] # Non-optional, core dependencies from here on out. futures = { version = "0.3.0", default-features = false, features = ["std"] } -yansi = { version = "1.0.0-rc", features = ["detect-tty"] } +yansi = { version = "1.0.1", features = ["detect-tty"] } log = { version = "0.4", features = ["std"] } num_cpus = "1.0" time = { version = "0.3", features = ["macros", "parsing"] } diff --git a/core/lib/src/request/request.rs b/core/lib/src/request/request.rs index 7dacddef..4272d2a3 100644 --- a/core/lib/src/request/request.rs +++ b/core/lib/src/request/request.rs @@ -1111,7 +1111,7 @@ impl fmt::Display for Request<'_> { // Print the requests media type when the route specifies a format. if let Some(mime) = self.format() { if !mime.is_any() { - write!(f, " {}/{}", mime.top().yellow().linger(), mime.sub().clear())?; + write!(f, " {}/{}", mime.top().yellow().linger(), mime.sub().resetting())?; } }