feat(sql): Improve type decoding. Adds support for time and dates (#266)

* feat(sql): Improve type decoding. Adds support for time and dates

* remove default feat

* typo
This commit is contained in:
Fabian-Lars
2023-03-05 12:25:15 +01:00
committed by GitHub
parent 265acf7454
commit 1d52416f70
8 changed files with 271 additions and 67 deletions
+1 -10
View File
@@ -14,15 +14,6 @@ compile_error!(
"Database driver not defined. Please set the feature flag for the driver of your choice."
);
#[cfg(any(
all(feature = "sqlite", not(any(feature = "mysql", feature = "postgres"))),
all(feature = "mysql", not(any(feature = "sqlite", feature = "postgres"))),
all(feature = "postgres", not(any(feature = "sqlite", feature = "mysql"))),
))]
mod decode;
mod plugin;
#[cfg(any(
all(feature = "sqlite", not(any(feature = "mysql", feature = "postgres"))),
all(feature = "mysql", not(any(feature = "sqlite", feature = "postgres"))),
all(feature = "postgres", not(any(feature = "sqlite", feature = "mysql"))),
))]
pub use plugin::*;