#build #info #build-time #consumed #compile-time #cargo #run-time

build build-info-build

Provides the data consumed by the build-info crate. Use as a build-dependency.

30 releases

0.0.36 Mar 11, 2024
0.0.34 Oct 9, 2023
0.0.31 Apr 28, 2023
0.0.30 Mar 18, 2023
0.0.19 Jun 10, 2020

#238 in Build Utils

Download history 887/week @ 2023-12-23 1836/week @ 2023-12-30 2787/week @ 2024-01-06 2924/week @ 2024-01-13 2912/week @ 2024-01-20 2998/week @ 2024-01-27 3206/week @ 2024-02-03 2866/week @ 2024-02-10 3557/week @ 2024-02-17 3174/week @ 2024-02-24 2539/week @ 2024-03-02 3316/week @ 2024-03-09 2938/week @ 2024-03-16 2049/week @ 2024-03-23 2760/week @ 2024-03-30 1981/week @ 2024-04-06

10,375 downloads per month
Used in 7 crates

MIT/Apache

41KB
713 lines

Usage

Begin by adding build-info as a [dependency] and build-info-build as a [build-dependency] to your Cargo.toml. By separating those two crates, pure compile-time dependencies, such as git2 are not compiled into your final program. For this to work properly, ensure to opt in to resolver "2".

If it does not already exist, add a build.rs to your project's root, where you call build_info_build::build_script(). This will collect build information at compile time.

Then, either use the build_info! macro to add a function that returns version information at runtime:

build_info::build_info!(fn version);

or use build_info::format! to generate a string at compile time:

// sample output: "{sample v0.0.13 built with rustc 1.45.0-nightly (4bd32c980 2020-05-29) at 2020-05-30 11:22:46Z}"
build_info::format!("{{{} v{} built with {} at {}}}", $.crate_info.name, $.crate_info.version, $.compiler, $.timestamp)

The sample project shows both variants.

Features

The build_info crate supports several feature flags:

  • The runtime feature enables build_info::build_info!. It is enabled by default, but if you intend to only use build_info::format!, it is safe to disable this flag. Disable this feature to use build_info in a no_std context.
  • The chrono feature enables the default features of the chrono package, which is used by build_info::build_info!. It is disabled by default.
  • The serde feature adds Serialize/Deserialize support to the types used by build_info::build_info!. It is disabled by default.

Caveats

The build script will ask cargo to rerun it whenever the project or the currently checked out commit changes. It will not necessarily be rerun if only the dependencies change (build_info_build::build_script will try to find the lockfile and depend on it, but it is not really aware of any of the more intricate features, such as, cargo workspaces). Please open an issue if your specific use case requires a more strict rerun policy for build.rs and include a short description what additional files should trigger a rebuild when changed.

Copyright and license

This project is copyright its authors and licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~6–15MB
~170K SLoC