1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! Versio is a version management utility.

#![recursion_limit = "1024"]

#[macro_use]
pub mod errors;
pub mod commands;
pub mod init;
pub(crate) mod scan;
pub mod vcs;

mod analyze;
mod config;
mod either;
mod git;
mod github;
mod mark;
mod mono;
mod output;
mod state;