Update yansi to 1.0.1.

This commit is contained in:
Sergio Benitez 2024-03-13 00:50:26 -07:00
parent 29e7093ef4
commit 2ef1e2f94b
4 changed files with 5 additions and 5 deletions

View File

@ -125,7 +125,7 @@ pub trait Database: From<Self::Pool> + DerefMut<Target = Self::Pool> + Send + Sy
let dbtype = std::any::type_name::<Self>().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
}
}

View File

@ -226,10 +226,10 @@ impl<K: 'static, C: Poolable> Sentinel for Connection<K, C> {
if rocket.state::<ConnectionPool<K, C>>().is_none() {
let conn = std::any::type_name::<K>().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;
}

View File

@ -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"] }

View File

@ -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())?;
}
}