From eb9cd821ca4299ff508d66a933deb45060f9f1d9 Mon Sep 17 00:00:00 2001
From: Max Countryman <maxc@me.com>
Date: Sat, 28 Aug 2021 19:24:22 -0700
Subject: [PATCH] ensure tide default-features are disabled (#286)

This ensures that maud itself doesn't dictate what features an author might like to use.
---
 maud/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/maud/Cargo.toml b/maud/Cargo.toml
index ed67fef..76c4882 100644
--- a/maud/Cargo.toml
+++ b/maud/Cargo.toml
@@ -24,7 +24,7 @@ iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
 rocket = { version = ">= 0.3, < 0.5", optional = true }
 futures-util = { version = "0.3.0", optional = true, default-features = false }
 actix-web-dep = { package = "actix-web", version = ">= 2, < 4", optional = true, default-features = false }
-tide = { version = "0.16.0", optional = true }
+tide = { version = "0.16.0", optional = true, default-features = false }
 axum = { version = "0.1.3", optional = true }
 
 [dev-dependencies]