Rust Cargo Build Pack 0.6.0
paketo-bot
released this
07 Jul 14:35
·
263 commits
to refs/heads/main
since this release
ID: paketo-community/cargo
Digest: sha256:572168763f4b8667331a13d77d1db84222e4350cc69a6fb283ab808200b2b878
Supported Stacks:
*
io.buildpacks.stacks.bionic
io.paketo.stacks.tiny
Dependencies:
Name | Version | SHA256 |
---|---|---|
Tini | 0.19.0 |
93dcc18adc78c65a028a84799ecf8ad40c936fdfc5f2a57b1acda5a8117fa82c |
⭐️ Enhancements
- Switch to using RFC Utilities RFC #5 (#171) @dmikusa-pivotal
- Enable sparse registry support. (#172) @dmikusa-pivotal
- Allow installing rust tools (#165) @dmikusa-pivotal
🐞 Bug Fixes
- Bump transitive dependencies to fix yaml CVE (#164) @dmikusa-pivotal
⛏ Dependency Upgrades
- Bump github.com/stretchr/testify from 1.7.5 to 1.8.0 (#170) @dependabot
- Bump github.com/stretchr/testify from 1.7.2 to 1.7.5 (#169) @dependabot
- Bump github.com/stretchr/testify from 1.7.1 to 1.7.2 (#167) @dependabot
- Bump Tini from 0.19.0 to 0.19.0 (#166) @paketo-bot
🚧 Tasks
- Bump pipeline from 1.21.2 to 1.21.3 (#163) @paketo-bot
Notes
Please note that with #171 we are deprecating the use of BP_CARGO_EXCLUDE_FOLDERS
. If you are using this env variable, you will get a warning a build time indicating that you should switch to using BP_INCLUDE_FILES
.
The change is easy. BP_CARGO_EXCLUDE_FOLDERS
takes a list of folder/file names separated by a comma. First, change the comma to a colon, the new property takes a colon-separated list. Then append /*
onto the end of each directory in your list. The BP_INCLUDE_FILES
option takes a list of Glob patterns, so to match a directory it needs foo/*
. Matching a file should still work without any change.