bakare/src/lib.rs

21 lines
317 B
Rust
Raw Normal View History

2019-01-12 14:39:20 +00:00
use std::collections::HashMap;
use std::fmt::Display;
use std::fmt::Formatter;
use std::io;
use failure::Fail;
2018-10-04 15:29:19 +01:00
pub mod backup;
2019-01-12 14:42:53 +00:00
pub mod error;
2018-10-04 15:29:19 +01:00
pub mod restore;
2018-12-22 16:09:22 +00:00
pub mod source;
2019-01-12 14:39:20 +00:00
pub mod repository;
pub struct ItemVersion(String);
2019-01-12 14:39:20 +00:00
pub struct IndexVersion;
struct IndexViewReadonly {
index_version: IndexVersion
2019-01-12 14:39:20 +00:00
}