shackle-shell 0.4.1

A shell for restricting access on a version control server
Documentation
1
2
3
4
5
6
7
8
9
10
11
// this common code is shared in multiple high level tests, which rust will
// compile as separate binaries. Unfortunately not all of those tests will use
// everything here, which results in spurious dead code warnings.
#![allow(dead_code)]
#![allow(unused_imports)]

pub mod context;
pub mod git;

pub use context::*;
pub use git::*;