cargo install した際に use of unstable library feature ... と怒られたとき

結論(の一つ)

以下のコマンドを用いて Rust のバージョンを上げる。その後に cargo install をやり直す。

$ rustup install stable
rustc 1.36.0 (a53f9df32 2019-07-03)
(省略)

$ rustc --version
rustc 1.38.0 (625451e37 2019-09-23)

背景

grex をインストール中に use of unstable library feature 'iter_nth_back' というエラーが出てハマりました。

github.com

参考

doc.rust-lang.org

Powered by はてなブログ