From 80ef2d9aab5c33c10f59fd601ea006cca87a603f Mon Sep 17 00:00:00 2001 From: Oskar Viljasaar Date: Wed, 27 Nov 2024 21:15:42 +0200 Subject: [PATCH] lib: remove the provide_any feature when backtrace is activated It would seem the provide_any feature has been removed from nightly rust[1], so this does not compile anymore. Fix this by removing this attribute. [1] https://github.com/rust-lang/rust/issues/96024#issuecomment-1683262673 --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 3193b7f..b7d4574 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,6 @@ #![warn(missing_docs)] #![deny(unused_must_use)] #![cfg_attr(feature = "backtrace", feature(error_generic_member_access))] -#![cfg_attr(feature = "backtrace", feature(provide_any))] pub mod errors; mod fsshttpb;