From e8820e99a55675d56d41b808675d51036bc97f64 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 13 Dec 2024 21:07:34 +0100 Subject: [PATCH] html5ever: explicitly enable nightly rustc_encodable_decodable feature --- collector/compile-benchmarks/html5ever/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collector/compile-benchmarks/html5ever/build.rs b/collector/compile-benchmarks/html5ever/build.rs index 3c30b79c3..63e1d7fc4 100644 --- a/collector/compile-benchmarks/html5ever/build.rs +++ b/collector/compile-benchmarks/html5ever/build.rs @@ -7,7 +7,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -#![allow(soft_unstable)] +#![feature(rustc_encodable_decodable)] extern crate phf_codegen; extern crate rustc_serialize;