At present, the runtime does not build on stable Rust. This is due to the use of four features:
#![feature(map_many_mut)]
#![feature(cursor_remaining)]
#![feature(coerce_unsized)]
#![feature(unsize)]
The first two features are primarily used for convenience and can be replaced with slightly-less-ergonomic equivalents. The latter two features are used to enable easy construction of Cb callback wrappers - it's likely that the downstream code will need to be changed to not rely on this, or another way is found to make Cb construction simpler.
At present, the runtime does not build on stable Rust. This is due to the use of four features:
The first two features are primarily used for convenience and can be replaced with slightly-less-ergonomic equivalents. The latter two features are used to enable easy construction of
Cbcallback wrappers - it's likely that the downstream code will need to be changed to not rely on this, or another way is found to makeCbconstruction simpler.