-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chapter 1.3 Hello, Cargo! #3
Comments
1.3.1 Cargoでプロジェクトを作成する
$ ls -lah hello_cargo/*
-rw-r--r-- 1 hitos 197609 135 Feb 7 00:02 hello_cargo/Cargo.toml
hello_cargo/src:
total 1.0K
drwxr-xr-x 1 hitos 197609 0 Feb 7 00:02 .
drwxr-xr-x 1 hitos 197609 0 Feb 7 00:02 ..
-rw-r--r-- 1 hitos 197609 45 Feb 7 00:02 main.rs Cargo.tomlはパッケージの設定や依存ライブラリを記述する、 build.gradle みたいなもの |
1.3.2 Cargoプロジェクトをビルドし、実行する
cargo runで実行してみる。
cargo runでコンパイルと実行が行われる。ソースコードの変更を管理しているので2回目以降はソースファイルの変更がなければコンパイルを行わない。 cargo checkでコンパイルできるかの確認(文法チェック)してみる。
|
リリースビルドを行うcargo build --release を実行して最適化を行った実行可能ファイルを生成する
cargo run --release とすれば最適化された実行可能ファイルで実行ができる
cargo clean で成果物をクリーンできる |
Cargoは、Rustのビルドシステム兼、パッケージマネージャです。ほとんどのRustaceanはこのツールを使用して、 Rustプロジェクトの管理をしています。Cargoは、コードのビルドやコードが依存しているライブラリのダウンロード、 それらのライブラリのビルドを行ってくれる。この章では以下を学ぶ
The text was updated successfully, but these errors were encountered: