rust 개발환경 추천은 주로 neovim 이나 vscode 가 검색된다.
개발환경 변경없이 rust 개발환경을 vim 에 구성한다
rust-analyzer, vim-lsp https://rust-analyzer.github.io/ https://github.com/prabirshrestha/vim-lsp
https://gitlab.com/feather973/simple_vimrc
https://asciinema.org/a/3o2tnUfZL7x0bMtAapLyoWyFK
회사 내에서 개발할때 외부 crate doc 을 미리 다운로드 받아두고 쓰고 싶을때도 있다. 이 경우 cargo add 를 통해 해결할수 있다.
cargo add serde cargo doc cd target/doc
rust 기본 document 다운로드 위치 : rustc --print sysroot
회사 내에서 개발할때 외부 crate doc 을 미리 다운로드 받아두고 쓰고 싶을때도 있다.
이 경우 cargo add 를 통해 해결할수 있다.
cargo add serde
cargo doc
cd target/doc