Hi there, I'm looking for a no_std io solution and this project seems to be the best one out there that I've seen. It looks like it hasn't been touched in a year though, and I was wondering whether this isn't maintained or if I don't understand the usage properly. When including this as a dependency core_io = { version = "0.1", features = [ "alloc", "collections" ] }, I get the version 0.1.20180307. If I manually set my compiler to the matching nightly (rustup override set nightly-2018-03-07), then the compilation works, but otherwise it doesn't (I would like to use a recent nightly). I'm trying to figure out whether there is something I'm missing here. Are users supposed to "roll their own" core_io based on the compiler version they're using? Or was it intended for this crate to be published on a regular basis?
I managed to make a new patch for 2aa4c46cfdd726e97360c2734835aa3515e8c858 (the 1.33.0 stable release commit) that works, but it's unclear to me how I would go about including this in my project. Any advice would be appreciated!
Hi there, I'm looking for a no_std io solution and this project seems to be the best one out there that I've seen. It looks like it hasn't been touched in a year though, and I was wondering whether this isn't maintained or if I don't understand the usage properly. When including this as a dependency
core_io = { version = "0.1", features = [ "alloc", "collections" ] }, I get the version0.1.20180307. If I manually set my compiler to the matching nightly (rustup override set nightly-2018-03-07), then the compilation works, but otherwise it doesn't (I would like to use a recent nightly). I'm trying to figure out whether there is something I'm missing here. Are users supposed to "roll their own" core_io based on the compiler version they're using? Or was it intended for this crate to be published on a regular basis?I managed to make a new patch for
2aa4c46cfdd726e97360c2734835aa3515e8c858(the 1.33.0 stable release commit) that works, but it's unclear to me how I would go about including this in my project. Any advice would be appreciated!