Homebrew
macOS / Linux では Homebrew で tdsl を導入できます。
brew tap keroway/tapbrew install tdsltdsl --help更新する場合は通常の Homebrew コマンドを使います。
brew updatebrew upgrade tdslワンラインインストール
Section titled “ワンラインインストール”Homebrewを使わない場合は、リリース済みバイナリを取得するインストールスクリプトを使えます。
curl -sSfL https://raw.githubusercontent.com/keroway/timeline-dsl/main/install.sh | shインストール先は既定で ~/.local/bin/tdsl です。~/.local/bin が PATH に入っていない場合は、利用しているシェルの設定ファイルに追加します。
export PATH="${HOME}/.local/bin:${PATH}"Windows(ワンラインインストール)
Section titled “Windows(ワンラインインストール)”PowerShell では、リリース済みバイナリを取得するインストールスクリプトを使えます。
irm https://raw.githubusercontent.com/keroway/timeline-dsl/main/install.ps1 | iex手動で取得する場合は、GitHub Releases の Assets から tdsl-windows-x86_64.zip をダウンロードし、展開した tdsl.exe を PATH の通ったフォルダに配置します。
cargo-binstall でインストール
Section titled “cargo-binstall でインストール”cargo-binstall がある場合は、ビルド済みバイナリを高速に導入できます。
cargo binstall tdsl-clicargoでインストール
Section titled “cargoでインストール”Rust開発環境がある場合は、GitHubリポジトリから tdsl-cli をインストールできます。
cargo install --git https://github.com/keroway/timeline-dsl tdsl-cli