기초 (Basic)
- 러스트 북 (유튜브 튜토리얼)
https://www.youtube.com/watch?v=OX9HJsJUDxA&list=PLai5B987bZ9CoVR-QEIN9foz4QCJ0H2Y8
- 러스트 북 (The Rust Book 한글 번역본)
https://doc.rust-kr.org/title-page.html
- 카고 북 (The Cargo Book)
https://doc.rust-lang.org/cargo/index.html
- 러스트 예제 (Rust by Example)
https://doc.rust-lang.org/rust-by-example/index.html
도메인 별 (Domain Specific) 학습 자료
- 커맨드라인 북 (The CLI Book)
https://rust-cli.github.io/book/index.html
- 웹 어셈블리 (Rust and WebAssembly)
https://rustwasm.github.io/docs/book/introduction.html
- 임베디드 북 (The Embedded Book)
https://doc.rust-lang.org/stable/embedded-book/intro/index.html
- 스탠포드 OS 코스 (라즈베리파이 + Rust)
- 백엔드 서비스 북 (Zero to Production in Rust - Building Backend Services) - 소개 및 구매 사이트
https://www.lpalmieri.com/posts/2020-05-24-zero-to-production-0-foreword/
고급
- 러스트 표준 라이브러리 레퍼런스 (Rust Standard Library Reference)
https://doc.rust-lang.org/std/index.html
- 러스트 레퍼런스 (The Rust Reference)
https://doc.rust-lang.org/reference/introduction.html
- 안전하지 않은 러스트 (The unsafe Book)
https://doc.rust-lang.org/nightly/unstable-book/the-unstable-book.html
- The Rustonomicon
https://doc.rust-lang.org/nomicon/intro.html
Rust 프로그램을 작성할 때 이해해야 할 모든 끔찍한 세부 사항을 파헤칩니다. (한국어 유튜브)
https://www.youtube.com/playlist?list=PLbChAGOJawhn15u0ckU3tTJl-MBWPon5K
- 러스트 매크로 북
https://veykril.github.io/tlborm/introduction.html
- 러스트 비동기 프로그래밍
https://rust-lang.github.io/async-book/
- C/C++을 러스트로 포팅하기 위한 가이드
https://locka99.gitbooks.io/a-guide-to-porting-c-to-rust/content/
- 러스트 FFI 옴니버스 (다른 언어에서 러스트를 사용하는 예제 모음)
https://jakegoulding.com/rust-ffi-omnibus/
- 러스트 주요 주제를 다룬다. (Crust of Rust)
https://www.youtube.com/watch?v=rAl-9HwD858&list=PLqbS7AVVErFiWDOAVrPt7aYmnuuOLYvOa
연습
- 다양한 러스트 실습
https://github.com/rust-lang/rustlings
- 다양한 러스트 실습
https://exercism.org/tracks/rust/exercises
커뮤니티
- 레딧 r/rust
https://www.reddit.com/r/rust/
- 러스타시안 팟케스트
https://rustacean-station.org/
- 러스트 주간 뉴스
https://this-week-in-rust.org/
- Awesome Rust [Rust 코드 및 리소스 선별 목록]
https://github.com/rust-unofficial/awesome-rust
출처
https://letsgetrusty.kartra.com/page/XDk8
거의 10만 개에 달하는 크레이트 중에서 적합한 크레이트를 찾는 것은 신규 Rust 개발자들로 하여금 혼란과 좌절을 느끼게 합니다.
이 문제가 해결될 수 있다면 어떨까요?
커뮤니티에서 "인증된" 크레이트 목록을 제공한다면 어떨까요?
러스트 크레이트 생태계에 대한 비공식 가이드
'개발 > 러스트 (Rust)' 카테고리의 다른 글
Rust 기본, OBRM vs RAII (0) | 2024.07.06 |
---|---|
Rust 기본, 주석 Comment. (0) | 2024.07.06 |
Rust 기본, 제어 흐름 Control Flow. (if else, loop, while, for) (0) | 2024.07.06 |
Rust 기본, 함수 (Functions) (0) | 2024.07.06 |
Rust 기본, 상수와 정적 변수 (Constants, Statics) 비교. (0) | 2024.07.06 |
Rust 기본, 데이타 타입 (Scalar, Compound, Unit) (0) | 2024.05.27 |
codellama가 알려준 Rust 와 다른 언어 비교. (0) | 2024.05.20 |
Rust 기본, Creation, Mutability, Shadowing, Scope 이해하기. (0) | 2024.05.16 |