mirror of https://github.com/dswd/zvault
38 lines
753 B
Rust
38 lines
753 B
Rust
#![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 regex;
|
|
#[macro_use] extern crate lazy_static;
|
|
extern crate fuse;
|
|
extern crate time;
|
|
extern crate libc;
|
|
|
|
pub mod util;
|
|
mod bundledb;
|
|
pub mod index;
|
|
mod chunker;
|
|
mod repository;
|
|
mod cli;
|
|
mod prelude;
|
|
mod mount;
|
|
|
|
|
|
fn main() {
|
|
cli::run();
|
|
}
|