Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 929 Bytes

install.md

File metadata and controls

34 lines (21 loc) · 929 Bytes

Rust 초기 설정

Install

공식문서에 따르면 한줄이면 가능하다.

$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
image

cargo가 정상적으로 설치된 모습.

Settings

$ cargo init [PATH]

cargo를 활용해 프로젝트를 간편하게 만들수 있다.

init 명령 이후에는 src/main.rsCargo.lock, Cargo.toml 파일이 생기며 main.rs를 entry-point로 빌드한다.

Build and Start

image
$ cargo build
$ cargo run

빌드를 진행하면 target/... 폴더로 결과물이 생성되며 실행할 경우 빌드된 결과물을 실행시켜준다.