diff --git a/sfy-data/Cargo.toml b/sfy-data/Cargo.toml index ab9b535..367e08a 100644 --- a/sfy-data/Cargo.toml +++ b/sfy-data/Cargo.toml @@ -21,12 +21,12 @@ bytes = "1.1.0" futures-util = "0.3.18" serde_json = "1.0.72" sanitize-filename = "0.3.0" -sqlx = { version = "0.6", features = [ "runtime-tokio-native-tls", "sqlite", "postgres", "any", "macros", "migrate", "offline", "chrono" ] } +sqlx = { version = "0.6", features = [ "runtime-tokio-native-tls", "any", "macros", "migrate", "offline", "chrono" ] } percent-encoding = "2.1.0" base64 = "0.13.0" [features] -sqlite = [] -postgres = [] +sqlite = [ "sqlx/sqlite" ] +postgres = [ "sqlx/postgres" ] default = ["sqlite"]