Rob Ede
Rob Ede
`cargo audit` compains about vulnerabilities in time v0.1 which is enabled transitively via chrono when the `oldtime` feature is enabled. This PR disables that feature of chrono since it's very...
> I would suggest pinning the version to ^0.4 insead of ^0 yep so would I but i've left them all as they were since it's not the purpose of...
Despite the low likelihood of downstream implementing WeakSender, I would still want to stick to semver and bump the version to 0.14. Wondering whether sealing this trait (and others?) is...
`actix` is in maintenance mode. Project contributors are not actively working on adding features but will still review PRs.
`actix` has not used within Actix Web for a very long time. The actor framework called `actix` is largely irrelevant and overly-verbose in today's async landscape. I'd recommend trying to...
Firstly, update to beta 2 to avoid a bug that was present regarding non-registered arbiters and to expose actix-rt v2 based API. Arbiters are glorified threads and just like with...
Arbiter is no longer Clone since Handles now exist. It would be possible to collect all Arbiter thread join handles and wait on them before System::run completes but it would...
Do you have a use case in mind for wanting this kind of ordering guarantee? As I see it, you can't do anything useful with a system after sending the...
I'm 90% sure Rust will guarantee the destructors run on all Actors before the program terminates.
You could define a simple macro with macro_rules and use it to do server set up in each test.