33 releases (breaking)
new 0.26.1 | Dec 10, 2024 |
---|---|
0.26.0 | Nov 18, 2024 |
0.25.0 | Oct 23, 2024 |
0.22.0 | Jun 18, 2024 |
0.3.0 | Sep 20, 2021 |
#362 in Network programming
1,284 downloads per month
120KB
2K
SLoC
libherokubuildpack
Common utilities for buildpacks written with libcnb.rs. Originally designed to be only used for official Heroku buildpacks. It was moved into the libcnb.rs repository as an incubator for utilities that might find their way into libcnb.rs proper.
This crate is optional and not required to write buildpacks with libcnb.rs. It provides helpers that buildpack authors commonly need. Examples are digest generation, filesystem utilities, HTTP download helpers and tarball extraction.
Crate Features
It is common to not need all the helpers in this crate. To avoid including unnecessary code and dependencies, this crate uses Cargo features to allow opt-out of certain modules if they're not needed.
The feature names line up with the modules in this crate. All features are enabled by default.
command
- Enabled helpers to work withstd::process::Command
.download
- Enables helpers to download files over HTTP.digest
- Enables helpers to create checksums of files.error
- Enables helpers to achieve consistent error logging.inventory
- Enables artifact inventory module.inventory-semver
- Enables inventory helpers to work withsemver::Version
.inventory-sha2
- Enables inventory helpers to work withsha2::Sha256
andsha2::Sha512
.log
- Enables helpers for logging.tar
- Enables helpers for working with tarballs.toml
- Enables helpers for working with TOML data.fs
- Enables helpers for filesystem related tasks.write
- Enablesstd::io::Write
proxy implementations.
Dependencies
~0.5–10MB
~116K SLoC