You've already forked rust-users
mirror of
https://github.com/uutils/rust-users.git
synced 2026-06-10 15:48:37 -07:00
4c966938db
This commit makes rust-users runnable on Rust Stable and Beta! - ToOwned in the collections crate can be imported by `std::borrow::ToOwned` instead, removing the collections flag. - `as_ref` on raw pointers can be null-checked manually, then dereferenced, removing the ptr_as_ref flag. The new code reads better, too.