From 1e1eab98dd3dbd14edcb06dc64d081f8cb05204c Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Mon, 22 Jun 2020 17:30:21 +1000 Subject: [PATCH] Silence "specialization is incomplete" warning See rust-lang/rust#71420. This doesn't need a release (or a changelog entry) as it just fixes a warning. --- maud/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maud/src/lib.rs b/maud/src/lib.rs index 7838136e..210b8ae9 100644 --- a/maud/src/lib.rs +++ b/maud/src/lib.rs @@ -1,4 +1,4 @@ -#![feature(specialization)] +#![feature(min_specialization)] //! A macro for writing HTML templates. //!