Skip to content

wayama0402/rust_template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

rust_template

Rust用開発テンプレート

VsCode Setting

extensions

cargo

# 新しいプロジェクトを作る
cargo new <project_name>
# ライブラリのとき
cargo new <project_name> --lib

# 実行する
cd <project_name>
cargo run

ビルド関係

# コンパイルチェック
cargo check

# ビルドのみ
cargo build

# ビルドと実行
cargo run

テスト

cargo test

バージョンアップ

rustup update

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors