git-lfs 0.7.0

Large file storage for git, implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Library surface for the `git-lfs` binary.
//!
//! This crate is primarily a binary (see `main.rs`). The library
//! half exists so other tools in the workspace can reuse the clap
//! command tree for man-page generation, shell completions, and
//! the like. Only [`args`] and [`man`] are intentionally public;
//! the rest of the binary's modules stay private to `main.rs`.

pub mod args;
pub mod man;

/// The published version of the `git-lfs` binary.
///
/// Re-exported so xtask (and any future consumer) renders the
/// correct banner and man-page version without baking in a literal.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");