코딩Coding/Rust★cargo★compiler
[Rust개발필수확장]러스트❤️개발을 위한 VSCODE 필수 Extensions& Cargo 명령어 정리
내인생PLUS
2022. 2. 6. 01:15
728x90
https://www.youtube.com/watch?v=x_iZEK6Rww4
Crates
Rust- Analyzer
CodeLLDB
Error Lens
------cargo 에서 주로 쓰는 기능
cargo fmt
// 자동 정렬 기능 먹통일때 쓸만함.
cargo fix
// 컴파일러의 권고를 그대로 수정해줌
cargo clippy
// Clippy 린트(똑똑한 분석 도구, 코드를 분석하는 린트(lint)의 집합으로 허스트 코드의 일반적인 실수를 찾아 코드 품질을 향상시킴
----cargo watch crate설치 후 가능
cargo watch -q -c -x 'run -q'
//실시간으로 결과를 계속 확인 가능함
--맥OS는
brew로 설치해야 합니다. ㅠㅠ
brew install rust rustup update
brew install rust
brew upgrade rust
------------------------------
rustup update
//rustup Rust 업데이트
rustup install stable
// 안전한 버젼 설치하기
rustup install 1.58
// 1.58 버젼으로 설치하기
rustup default nightly
// 나이트 버젼 설치하기
// stable > beta > nightly
// stable이 가장 안정정인 버젼입니다.
// nightly는 최신이지만 최적화 되지 않음.ㅜㅜ
rustc --version
// rustc버젼 체크(러스트 버젼체크로 보면 됩니다.)
rustc uninstall beta
// beta버젼 삭제하기
----Rust Crates-----
cargo watch
cargo 명령어 정리
https://economiceco.tistory.com/12248
cargo doc —-open
설명서 만들기 html로 이쁘게 나옴
https://blog.naver.com/shpack1234/222675630765
cargo watch -q -c -x 'run -q'
----cargo watch crate설치 후 가능
cargo watch -q -c -x 'run -q'
//실시간으로 결과를 계속 확인 가능함
--맥OS는
brew로 설치해야 합니다. ㅠㅠ
brew install rust rustup update
brew install rust
brew upgrade rust
https://economiceco.tistory.com/12241
https://www.youtube.com/watch?v=4_LQ0BPSQUg
part2
https://www.youtube.com/watch?v=rZN2jsJvSsA
★★★Rust Toturial 로드맵(Road Map)첫시작!-
★★★(총정리)Rustacean이 되어 보자!!Let's go!
- https://economiceco.tistory.com/m/8614
Rust 한글 강의 -
Easy Rust최고(Rust 강좌) -
https://economiceco.tistory.com/m/11716
반응형