slawlor / ractor

Rust actor framework
MIT License
1.38k stars 69 forks source link

Add note about MSRV #112

Closed quietlychris closed 1 year ago

quietlychris commented 1 year ago

I was kicking around adding ractor as a dependency to one of my projects recently, and kept running into some issues with some tokio-related build issues. After spending some time changing around features in other deps to try to match tokio, I decided to try a rustup update on my toolchain, which seems to have resolved the issues I was seeing. I believe this update from from rustc 1.65.0-nightly to rustc 1.71-nightly.

I'm not sure if anyone else has seen something similar (maybe it was just a quirk of my system), but I know that some Rust projects add a Minimum Supported Rust Version (MSRV), with a specific build in their CI toolchain to make sure new releases don't break people who haven't update their toolchain very recently, or can at least make informed decisions about when to do so. I was wondering if you might consider doing something similar for ractor. Thanks working on this crate--I'm really interested about the possibilities, and it's nice to see something actively worked on now that actix and bastion don't really seem to be being developed any longer!