From 591d33b877ec3cdde3f9da3846b38e45d52b6982 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Tue, 13 Oct 2020 13:32:46 -0400 Subject: [PATCH] Enable all features for `sqlx-core` on docs.rs --- sqlx-core/Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sqlx-core/Cargo.toml b/sqlx-core/Cargo.toml index 9741df0b..fcc68990 100644 --- a/sqlx-core/Cargo.toml +++ b/sqlx-core/Cargo.toml @@ -12,6 +12,9 @@ authors = [ "Daniel Akhterov ", ] +[package.metadata.docs.rs] +features = ["all-databases", "all-types", "offline"] + [features] default = [ "runtime-async-std", "migrate" ] migrate = [ "sha2", "crc" ]