1#![feature(get_mut_unchecked)]
16
17#[cfg(test)]
18#[macro_use]
19extern crate maplit;
20
21pub mod commit;
22pub mod commit_builder;
23pub mod conflicts;
24pub mod dag_walk;
25pub mod evolution;
26pub mod files;
27pub mod git;
28pub mod git_store;
29pub mod index;
30pub mod local_store;
31pub mod lock;
32pub mod matchers;
33pub mod op_store;
34pub mod operation;
35pub mod protos;
36pub mod repo;
37pub mod repo_path;
38pub mod rewrite;
39pub mod settings;
40pub mod simple_op_store;
41pub mod store;
42pub mod store_wrapper;
43pub mod testutils;
44pub mod transaction;
45pub mod tree;
46pub mod tree_builder;
47pub mod trees;
48pub mod view;
49pub mod working_copy;