tokio::main is a macro that takes care of starting the runtime so that the user can just write async fn main and use runtime functionality immediately.
We would like to have something similar - seastar::main.
It would be nice to be able to pass some runtime configuration options to the macro.
This issue doesn't have a very high priority, for now we can just create the runtime manually, it's more important to get all the functionality working first.
tokio::main
is a macro that takes care of starting the runtime so that the user can just writeasync fn main
and use runtime functionality immediately.We would like to have something similar -
seastar::main
. It would be nice to be able to pass some runtime configuration options to the macro.This issue doesn't have a very high priority, for now we can just create the runtime manually, it's more important to get all the functionality working first.