mirror of https://github.com/dswd/zvault
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
649 B
32 lines
649 B
#![recursion_limit="128"] |
|
extern crate serde; |
|
extern crate rmp_serde; |
|
#[macro_use] extern crate serde_utils; |
|
extern crate squash_sys as squash; |
|
extern crate mmap; |
|
extern crate blake2_rfc as blake2; |
|
extern crate murmurhash3; |
|
extern crate serde_yaml; |
|
#[macro_use] extern crate quick_error; |
|
extern crate rustc_serialize; |
|
extern crate chrono; |
|
#[macro_use] extern crate clap; |
|
#[macro_use] extern crate log; |
|
extern crate byteorder; |
|
extern crate sodiumoxide; |
|
extern crate ansi_term; |
|
extern crate filetime; |
|
extern crate libc; |
|
|
|
pub mod util; |
|
pub mod bundledb; |
|
pub mod index; |
|
mod chunker; |
|
mod repository; |
|
mod cli; |
|
mod prelude; |
|
|
|
|
|
fn main() { |
|
cli::run(); |
|
}
|
|
|