Adding components in fuelup
is often just a small PR to components.toml
in the repo, followed by a
new release of fuelup
.
This section describes how you may add support for a binary within fuelup
.
This refers to binaries like forc-fmt
that are added within the Sway repository.
In this scenario, fuelup
will already automatically download the tar file from the Sway repository and
unarchive all of them without discrimination. You will be able to use the executables, but certain features
like fuelup show
may not work until you add them to the components.toml
within the source code. fuelup
reads from this TOML file to know which components are supported directly through itself, so this step is
important. You may follow the PR adding forc-tx
as an example of how to add such a component.
This refers to standalone binaries like forc-wallet
which have their own repositories.
In this case, fuelup
will NOT download the tar file automatically since it does not know where to
download it from. Currently, we do not support downloading and using arbitrary forc plugins and components, so
information will have to be added to components.toml
for fuelup
to know how to handle these. You may follow
the PR adding forc-wallet
as an example of how to add such a component.
Example:
[component.forc-wallet]
name = "forc-wallet"
tarball_prefix = "forc-wallet"
is_plugin = true
executables = ["forc-wallet"]
repository_name = "forc-wallet"
targets = [ "aarch64-unknown-linux-gnu", "x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-apple-darwin" ]
publish = true
A short description of the keys you find above:
name
tarball_prefix
<name>-<version>-<target>
for our tar files. tarball_prefix
refers to the <name>
part. executables
forc
itself and forc-client
may package multiple executables and therefore have different names. repository_name
targets
is_plugin
forc
plugin. publish
forc
.