Bug Report
In this case there is no feature restriction, and it can lead to possible problems by not selecting any features
Steps to reproduce
impl From<&Auth> for DatabaseType {
fn from(value: &Auth) -> Self {
match value {
crate::datasources::Auth::Postgres(_) => DatabaseType::PostgreSql,
crate::datasources::Auth::SqlServer(_) => DatabaseType::SqlServer,
crate::datasources::Auth::MySQL(_) => DatabaseType::MySQL,
}
}
}
Bug Report
In this case there is no feature restriction, and it can lead to possible problems by not selecting any features
Steps to reproduce