mirror of https://github.com/dswd/zvault
Fix versions
This commit is contained in:
parent
5964625ec7
commit
bf180ddea5
|
@ -10,17 +10,17 @@ rmp-serde = "0.12"
|
|||
serde_yaml = "0.6"
|
||||
serde_utils = "0.5.1"
|
||||
squash-sys = "0.9"
|
||||
mmap = "*"
|
||||
mmap = "0.1"
|
||||
quick-error = "1.1"
|
||||
blake2-rfc = "*"
|
||||
murmurhash3 = "*"
|
||||
blake2-rfc = "0.2"
|
||||
murmurhash3 = "0.0.5"
|
||||
rustc-serialize = "0.3"
|
||||
chrono = "0.3"
|
||||
clap = "2.19"
|
||||
log = "0.3"
|
||||
byteorder = "1.0"
|
||||
ansi_term = "0.9"
|
||||
sodiumoxide = "*"
|
||||
sodiumoxide = "0.0.14"
|
||||
libc = "*"
|
||||
|
||||
[build-dependencies]
|
||||
|
|
|
@ -42,7 +42,7 @@ pub fn load_bundles<P: AsRef<Path>>(path: P, bundles: &mut HashMap<BundleId, Sto
|
|||
bundle_paths.remove(&bundle.path);
|
||||
}
|
||||
}
|
||||
let gone = gone.iter().map(|id| bundles.remove(&id).unwrap().info).collect();
|
||||
let gone = gone.iter().map(|id| bundles.remove(id).unwrap().info).collect();
|
||||
let mut new = vec![];
|
||||
for path in bundle_paths {
|
||||
let bundle = StoredBundle {
|
||||
|
|
Loading…
Reference in New Issue