1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
pub mod cargo;
pub use cargo::{build, check, fix, test};
mod command;
pub use command::*;
pub mod env;
pub mod examples;
mod filename;
pub use filename::library_filename;
#[cfg(feature = "git2")]
mod git;
#[cfg(feature = "git2")]
pub use git::*;
#[cfg(feature = "git2")]
pub mod packaging;
pub mod paths;
pub mod rustup;
mod sed;
pub use sed::find_and_replace;
#[cfg(feature = "git2")]
mod testing;
#[cfg(feature = "git2")]
pub use testing::clone_dylint_template;