libherokubuildpack

Crates.iolibherokubuildpack
lib.rslibherokubuildpack
version0.25.0
sourcesrc
created_at2021-08-27 12:59:52.416569
updated_at2024-10-23 16:51:29.422185
descriptionOpinionated common code for buildpacks implemented with libcnb.rs
homepage
repositoryhttps://github.com/heroku/libcnb.rs/tree/main/libherokubuildpack
max_upload_size
id443074
size102,549
Heroku Languages Release Bot (heroku-languages-release-bot)

documentation

https://docs.rs/libherokubuildpack

README

libherokubuildpack   Docs Latest Version MSRV

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 with std::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 with semver::Version.
  • inventory-sha2 - Enables inventory helpers to work with sha2::Sha256 and sha2::Sha512.
  • log - Enables helpers for logging.
  • buildpack_output - Enables helpers for user-facing buildpack output.
  • tar - Enables helpers for working with tarballs.
  • toml - Enables helpers for working with TOML data.
  • fs - Enables helpers for filesystem related tasks.
  • write - Enables std::io::Write proxy implementations.
Commit count: 669

cargo fmt