-
I would like to see explicit_generic_args_with_impl_trait (Tracking Issue) stabilized. Allows specifying generic arguments (ex in fn foo(v: impl Into)) even when you are using an impl for the function parameter. Usually, I'd have to change it to fn foo>(v: A). This makes so instead of writing foo::("text");, I can write foo::("text"); Nothing major but very nice for my current code where one parameter is impossible to guess (T, because it is essentially compile-time data) and the other is trivial to guess.
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
GATs impl trait alias unboxed closures
-
rocket-lamb
Discontinued A crate to allow running a Rocket webserver as an AWS Lambda Function with API Gateway or an Application Load Balancer
-
-
Polonius - https://github.com/rust-lang/polonius
-
That can be done with build.rs. I do exactly that in srgb crate.