rust/rustc_tools_util/README.md

56 lines
1.3 KiB
Markdown
Raw Normal View History

2018-12-25 10:03:36 -06:00
# 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`
````toml
2018-12-25 10:03:36 -06:00
build = "build.rs"
````
List rustc_tools_util as regular AND build dependency.
````toml
2018-12-25 10:03:36 -06:00
[dependencies]
rustc_tools_util = "0.2.1"
2018-12-25 10:03:36 -06:00
[build-dependencies]
rustc_tools_util = "0.2.1"
2018-12-25 10:03:36 -06:00
````
In `build.rs`, generate the data in your `main()`
```rust
2018-12-25 10:03:36 -06:00
fn main() {
rustc_tools_util::setup_version_info!();
2018-12-25 10:03:36 -06:00
}
```
2018-12-25 10:03:36 -06:00
Use the version information in your main.rs
```rust
2018-12-25 10:03:36 -06:00
fn show_version() {
let version_info = rustc_tools_util::get_version_info!();
println!("{}", version_info);
}
```
2018-12-25 10:03:36 -06:00
This gives the following output in clippy:
`clippy 0.1.66 (a28f3c8 2022-11-20)`
## Repository
2018-12-25 10:03:36 -06:00
This project is part of the rust-lang/rust-clippy repository. The source code
can be found under `./rustc_tools_util/`.
2018-12-25 10:03:36 -06:00
## License
Copyright 2014-2022 The Rust Project Developers
2018-12-25 10:03:36 -06:00
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.