upsft 0.0.1

A simple CLI tool to update multiple dependencies
upsft-0.0.1 is not a library.

About

It is a simple cli tool, which you can use to update multiple dependencies.

Installation

Install upsft using Cargo:

cargo install upsft

If you already have Rust installed, this will download, build, and install the binary into ~/.cargo/bin.

If you do not have Rust yet, install it first with rustup:

curl https://sh.rustup.rs -sSf | sh

To update upsft later, run:

cargo install --force upsft

Usage

  1. Setup the config file config.toml you can create it using init command
upsft init

This creates a config.toml file in ~/.config/upsft/config.toml which is default location for configs in a mac

  1. Now fill the config toml see the below example
[deps]
"homebrew" = "brew update"
"npm" = "npm update -g"
"pnpm" = "pnpm update -g"
  1. Now save the file and run upsft from terminal from home directory, it will start executing update commands
upsft