use std::fmt;
use proc_macro_hack::proc_macro_hack;
#[proc_macro_hack]
pub use version_consts_git_impl::version;
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub struct Commit(pub [u8; 20]);
impl std::ops::Deref for Commit {
type Target = [u8];
fn deref(&self) -> &[u8] {
&self.0
}
}
impl fmt::Display for Commit {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
for x in &self.0 {
write!(f, "{:02x}", x)?;
}
Ok(())
}
}
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub struct Version {
pub commit: Commit,
pub dirty: bool,
}