Skip to content

Commit

Permalink
docs: Update documentation on new vendored feature
Browse files Browse the repository at this point in the history
  • Loading branch information
VorpalBlade committed Jul 14, 2024
1 parent 08dd8ea commit 5be391c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/src/dev/packaging.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ Awesome! Here are some helpful notes for you.
just asking for potential issues.
* You likely want to exclude the built in self updater (that downloads from
Github releases), as your package manager should be used instead. This is easy:
pass `--no-default-features --features=keyring` to cargo build.
pass `--no-default-features --features=keyring` to cargo build. This will also
avoid vendoring C dependencies (in particular `libdbus`) and instead link them
dynamically. If you don't want that, add the `vendored` feature as well
(i.e. `--features=keyring,vendored`).

And so we arrive at the final (reliable regardless of what environment the
user might have) build command:
Expand Down

0 comments on commit 5be391c

Please sign in to comment.