8 releases

new 0.4.2 Feb 14, 2025
0.4.1 Feb 13, 2025
0.4.0 Oct 7, 2024
0.3.0 Dec 15, 2022
0.1.1 Jan 3, 2019

#91 in Development tools

Download history 28792/week @ 2024-10-30 12259/week @ 2024-11-06 15202/week @ 2024-11-13 20388/week @ 2024-11-20 41532/week @ 2024-11-27 12630/week @ 2024-12-04 16629/week @ 2024-12-11 13649/week @ 2024-12-18 30770/week @ 2024-12-25 22037/week @ 2025-01-01 18884/week @ 2025-01-08 17853/week @ 2025-01-15 30571/week @ 2025-01-22 28497/week @ 2025-01-29 19754/week @ 2025-02-05 15653/week @ 2025-02-12

97,250 downloads per month
Used in 16 crates (8 directly)

MIT/Apache

10KB
169 lines

rustc_tools_util

A small tool to help you generate version information for packages installed from a git repo

Usage

Add a build.rs file to your repo and list it in Cargo.toml

build = "build.rs"

List rustc_tools_util as regular AND build dependency.

[dependencies]
rustc_tools_util = "0.4.2"

[build-dependencies]
rustc_tools_util = "0.4.2"

In build.rs, generate the data in your main()

fn main() {
    rustc_tools_util::setup_version_info!();
}

Use the version information in your main.rs

fn show_version() {
    let version_info = rustc_tools_util::get_version_info!();
    println!("{}", version_info);
}

This gives the following output in clippy: clippy 0.1.66 (a28f3c8 2022-11-20)

Repository

This project is part of the rust-lang/rust-clippy repository. The source code can be found under ./rustc_tools_util/.

The changelog for rustc_tools_util is available under: rustc_tools_util/CHANGELOG.md

License

Copyright 2014-2024 The Rust Project Developers

Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option. All files in the project carrying such notice may not be copied, modified, or distributed except according to those terms.

No runtime deps