Merge pull request #208 from dtolnay/fallback

Remove pre-1.57 proc_macro2::fallback::force()
This commit is contained in:
David Tolnay 2024-01-20 17:12:04 -08:00 committed by GitHub
commit 07c5c5935b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,10 +141,6 @@ fn cargo_expand() -> Result<i32> {
const DOLLAR_CRATE_PLACEHOLDER: &str = "Ξcrate";
let wip = questionably_formatted.replace("$crate", DOLLAR_CRATE_PLACEHOLDER);
// Support cargo-expand built with panic=abort, as otherwise proc-macro2
// ends up using a catch_unwind.
proc_macro2::fallback::force();
enum Stage {
Formatted(String),
Unformatted(String),