Sourced from anyhow's releases.
1.0.46
Support for implicit format args to match println and other std macros (https://rust-lang.github.io/rfcs/2795-format-args-implicit-identifiers.html)
let var = ...; let error = anyhow!("interpolate {var}"); // equivalent to anyhow!("interpolate {var}", var=var)Detect missing fmt arguments at compile time:
anyhow!("{} not found")(https://github.com/facebook/flipper/issues/55)Reduce occurrence of "future cannot be shared between threads safely" in async code using anyhow macros (https://github.com/facebook/flipper/issues/186)
3a183b9 Release 1.0.47d901973 Add workaround for the bail msg from log4rs cratef99b799 Install newest build of cargo-outdatedf75fe39 Release 1.0.46a32c1d1 Merge pull request https://github.com/facebook/flipper/issues/187 from dtolnay/temporaries38591a9 Drop temporaries as early as possible in $:expr case45f6545 Add regression test of issue 186fb3e4b7 Ignore needless_pass_by_value Clippy pedantic lint in test suite636bed6 Ignore items_after_statements Clippy pedantic lint in test suitea7f6089 Merge pull request https://github.com/facebook/flipper/issues/185 from dtolnay/fmt