Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 615 Bytes

File metadata and controls

37 lines (28 loc) · 615 Bytes

環境構築

rustupをインストール: https://rust-lang.org/ja/tools/install/

もしくはnixを使う

# このテンプレートを再現したい場合
cargo init
cargo add clap --features derive
cargo add ratatui crossterm
cargo install --locked bacon

開発用コマンド

# build
cargo build
cargo build --release

# watch mode
bacon

# execute
cargo run
./target/debug/cli-rust-template
./target/release/cli-rust-template

参考