1
0
mirror of https://github.com/dswd/zvault synced 2025-03-14 12:52:46 +00:00

38 lines
753 B
Rust
Raw Normal View History

2017-03-22 09:19:16 +01:00
#![recursion_limit="128"]
2017-03-10 12:43:32 +01:00
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;
2017-03-14 16:07:52 +01:00
extern crate rustc_serialize;
2017-03-16 12:33:10 +01:00
extern crate chrono;
2017-03-17 07:15:19 +01:00
#[macro_use] extern crate clap;
2017-03-17 11:03:07 +01:00
#[macro_use] extern crate log;
2017-03-18 15:41:59 +01:00
extern crate byteorder;
2017-03-18 17:22:11 +01:00
extern crate sodiumoxide;
extern crate ansi_term;
2017-03-22 19:58:56 +01:00
extern crate filetime;
2017-03-24 11:00:20 +01:00
extern crate regex;
2017-03-31 18:44:27 +02:00
#[macro_use] extern crate lazy_static;
2017-03-26 11:34:16 +02:00
extern crate fuse;
extern crate time;
2017-03-20 22:24:53 +01:00
extern crate libc;
2017-03-18 15:41:59 +01:00
2017-03-15 21:53:05 +01:00
pub mod util;
2017-03-23 09:31:23 +01:00
mod bundledb;
2017-03-15 21:53:05 +01:00
pub mod index;
2017-03-10 12:43:32 +01:00
mod chunker;
mod repository;
2017-03-16 20:05:58 +01:00
mod cli;
2017-03-21 11:28:11 +01:00
mod prelude;
2017-03-26 11:34:16 +02:00
mod mount;
2017-03-16 20:05:58 +01:00
2017-03-10 12:43:32 +01:00
fn main() {
2017-03-16 20:05:58 +01:00
cli::run();
2017-03-10 12:43:32 +01:00
}