Most Complete and/or Erlang-like Actor Model?

Hey, all. It hasn't gone unnoticed that there are quite a few Actor-based projects on Github and Crates. So many in fact, it's hard to sort out the best options for use in your projects. I'm looking for one that I would recognize as feature-complete, from the perspective of someone who has used Actors in Elixir/Erlang. Looking for advice. Thanks.

You can have a look at Ractor, which is still maintained and aims to provide an Erlang-like actor model in Rust.

If you want to keep the full Elixir development experience, it might be better to stick to Erlang and then write performance-critical sections in Rust. You can use Rustler to bridge the two languages.