You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I use this crate without any defualt features enabled, it fails to compile because something from the lambda_attributes crate is imported, even though it isn't a dependency in Cargo.toml. It should be a simple fix - just add a #[cfg(feature = "lambda-attributes")] above the import, and maybe in a few other places.
In order to avoid regressions in the future, we could update the hello-no-macro example to use the lambda crate without any default features, so that it fails to compile if this breaks again (and hopefully causes CI to fail).