Skip to content

Commit

Permalink
lib: remove the provide_any feature when backtrace is activated
Browse files Browse the repository at this point in the history
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] rust-lang/rust#96024 (comment)
  • Loading branch information
tshikaboom committed Dec 4, 2024
1 parent 9bcbcae commit e861bfc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e861bfc

Please sign in to comment.