doc/package_maintainers.md
ncspot makes use of the standard Cargo build system for everything. To compile a release version,
execute cargo build --release in the terminal from the project root. The executable file can be
found at target/release/ncspot. For detailed build instructions, have a look at the developer
documentation.
Additional features can be included by appending them to the build command. A list of all the
available features can be found in the Cargo.toml under the [features] table. To
activate a feature, include its name like cargo build --release --features feature1,feature2,....
To disable the default features, add --no-default-features to the command.
The following is a list of other files that are provided by ncspot. Some of them need to be
generated. Execute cargo xtask --help for more information.
The cargo-deb package can be used to build a
Debian package with the following commands. The package will be generated in target/debian/.
cargo install cargo-deb
cargo deb