chore(mysql): deny bad-cast lints

This commit is contained in:
Austin Bonander 2024-08-18 00:20:35 -07:00
parent 1f3db8201d
commit e99f0fa5b6

View file

@ -1,4 +1,7 @@
//! **MySQL** database driver.
#![deny(clippy::cast_possible_truncation)]
#![deny(clippy::cast_possible_wrap)]
#![deny(clippy::cast_sign_loss)]
#[macro_use]
extern crate sqlx_core;