p4-cmd 0.1.0

P4 API (wraps CLI)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate chrono;
#[macro_use]
extern crate nom;

mod p4;
mod parser;

pub use p4::*;
pub mod dirs;
pub mod error;
pub mod files;
pub mod print;
pub mod sync;
pub mod where_;