build(deps): update dependencies (#4268)

This commit is contained in:
Sanchith Hegde
2024-04-02 15:43:30 +05:30
committed by GitHub
parent 9cce1520e3
commit 1f0d60e64f
46 changed files with 1980 additions and 1867 deletions

View File

@ -100,10 +100,10 @@ where
Type: DbType + FromStr + Display,
{
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> sqlx::encode::IsNull {
self.0.to_string().encode(buf)
<String as Encode<'q, Postgres>>::encode(self.0.to_string(), buf)
}
fn size_hint(&self) -> usize {
self.0.to_string().size_hint()
<String as Encode<'q, Postgres>>::size_hint(&self.0.to_string())
}
}