1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Fac is a build system.

#![cfg_attr(feature = "strict", deny(warnings))]
#![cfg_attr(feature = "strict", deny(missing_docs))]

#[macro_use]
extern crate clap;

/// A module with just the version in it.
pub mod version;
pub mod git;

pub mod build;