cargo-bins

cargo-binstall/cargo-quickinstall


Trust


Add

Using soar defconfig (Recommended)

#ONLY If you didn't already use it or have your own custom config
soar defconfig --external
soar sync
soar list 'cargo-bins'

Using your text editor [ ~/.config/soar/config.toml ]

#Open the config file using your favourtie editor
#In this example, we will use micro
mkdir -pv "~/.config/soar" &&\
 micro "~/.config/soar/config.toml"
[[repositories]]
name = "cargo-bins"
url = "https://meta.pkgforge.dev/external/cargo-bins/x86_64-Linux.json.zstd"
soar sync
soar list 'cargo-bins'

Using tee (NOT-Recommended)

mkdir -pv "~/.config/soar" &&\
tee -a "~/.config/soar/config.toml" <<EOF
[[repositories]]
name = "cargo-bins"
url = "https://meta.pkgforge.dev/external/cargo-bins/x86_64-Linux.json.zstd"
EOF
soar sync
soar list 'cargo-bins'

Last updated

Was this helpful?