mev-rs
mev-rs copied to clipboard
Drop use of `async_trait` in `mev-rs` crate?
There are some traits in mev-rs
that have async methods, and the way to implement this until recently has been with the use of the async_trait
crate.
As of Rust 1.75, there is preliminary support for using async
methods in a trait and I wonder if there is enough native support to drop async_trait
.