「Rustでネコチャンを点描する」を試す

rust

以下のコードを実行してみました。

Rustでネコチャンを点描する
https://zenn.dev/yskaksk/articles/e4cd8e311cfbe4

git と rust がインストールされてることが前提です
(macOS Monterey Apple Siliconで確認済み)

% rustc -V                                                
rustc 1.56.1 (59eed8a2a 2021-11-01)
% git --version
git version 2.32.0 (Apple Git-132)

ソースコードは以下

yskaksk/rust-stippling – github
https://github.com/yskaksk/rust-stippling

ソースコードの clone

% git clone https://github.com/yskaksk/rust-stippling.git
% cd rust-stippling

普通に cargo run では実行できませんでした。

cargo.toml を見ると以下の記述がありました。

[[example]]
name = "image-only"
path = "image/image_only.rs"

[[example]]
name = "image-and-particles"
path = "image-and-particle/image_and_particles.rs"

この example の name を指定して実行すると良いらしいです。

以下で、デモが実行できました。

% cargo run --example image-only

以下は、エラーが出て実行できませんでした。謎。

% cargo run --example image-and-particles

参考

Rust のお試しコードを実行する: cargo run –example – 2018-08-03
https://rohki.hatenablog.com/entry/2018/08/03/200805

おすすめの Rust の本

詳解Rustプログラミング

実践Rustプログラミング入門

プログラミング言語Rust入門

実践Rust入門 [言語仕様から開発手法まで]

Rustで始めるネットワークプログラミング

RustではじめるOpenGL (技術の泉シリーズ(NextPublishing))

プログラミング言語Rust 公式ガイド

コメント

タイトルとURLをコピーしました