3 releases

0.1.2 Apr 29, 2020
0.1.1 Dec 7, 2019
0.1.0 Nov 27, 2019

#249 in Build Utils

Download history 4126/week @ 2023-11-21 4029/week @ 2023-11-28 4698/week @ 2023-12-05 5502/week @ 2023-12-12 4662/week @ 2023-12-19 2608/week @ 2023-12-26 4431/week @ 2024-01-02 5977/week @ 2024-01-09 6335/week @ 2024-01-16 6650/week @ 2024-01-23 5555/week @ 2024-01-30 4926/week @ 2024-02-06 5080/week @ 2024-02-13 6330/week @ 2024-02-20 6430/week @ 2024-02-27 4260/week @ 2024-03-05

22,803 downloads per month
Used in 38 crates (29 directly)

Apache-2.0

785KB
358 lines

git_info

crates.io Continuous Integration codecov
license Libraries.io for GitHub Documentation downloads
Built with cargo-make

Extracts git repository information.

Overview

This library main goal is to provide development/build tools such as cargo-make the needed information on the current git repository.

Usage

Simply include the library and invoke the get function to pull all info as follows:

fn main() {
    let info = git_info::get();

    println!(
        "User Name: {}",
        info.user_name.unwrap_or("Unknown".to_string())
    );
    println!(
        "User Email: {}",
        info.user_email.unwrap_or("Unknown".to_string())
    );
    println!("Dirty: {}", info.dirty.unwrap_or(false));
    println!(
        "Current Branch: {}",
        info.current_branch.unwrap_or("Unknown".to_string())
    );

    println!(
        "Last Commit Hash: {}",
        info.head.last_commit_hash.unwrap_or("Unknown".to_string())
    );
    println!(
        "Last Commit Hash (short): {}",
        info.head
            .last_commit_hash_short
            .unwrap_or("Unknown".to_string())
    );

    println!("Config: {:#?}", info.config.unwrap());
    println!("Branches: {:#?}", info.branches.unwrap_or(vec![]));
}

Installation

In order to use this library, just add it as a dependency:

[dependencies]
git_info = "^0.1.2"

API Documentation

See full docs at: API Docs

Contributing

See contributing guide

Release History

See Changelog

License

Developed by Sagie Gur-Ari and licensed under the Apache 2 open source license.

No runtime deps