Open sorairolake opened 7 months ago
With this change, the following files will be generated when building b3sum:
b3sum
b3sum.1
b3sum.bash
b3sum.elv
b3sum.fish
_b3sum.ps1
_b3sum
To find where these files are generated run the following command in b3sum/:
b3sum/
find ./target -path '*/b3sum-*/out' -type d
To use these, install them to the destination (e.g., /usr/share/man/man1 or /usr/share/bash-completion/completions).
/usr/share/man/man1
/usr/share/bash-completion/completions
Also, I set rust-version to Cargo.toml. This is based on the value of .github/workflows/ci.yml. If there is no value, 1.56.0 is set based on edition.
rust-version
Cargo.toml
.github/workflows/ci.yml
1.56.0
edition
This closes #190 and closes #235.
Bump the MSRV of blake3 to 1.72.0. This is because the MSRV of zeroize v1.8.0 is 1.72.0, and the CI will fail if the MSRV of blake3 isn't bumped.
blake3
zeroize
With this change, the following files will be generated when building
b3sum
:b3sum.1
).b3sum.bash
), Elvish (b3sum.elv
), fish (b3sum.fish
), PowerShell (_b3sum.ps1
), and Zsh (_b3sum
).To find where these files are generated run the following command in
b3sum/
:To use these, install them to the destination (e.g.,
/usr/share/man/man1
or/usr/share/bash-completion/completions
).Also, I set
rust-version
toCargo.toml
. This is based on the value of.github/workflows/ci.yml
. If there is no value,1.56.0
is set based onedition
.This closes #190 and closes #235.