Fix versions

pull/10/head
Dennis Schwerdel 2017-03-21 17:24:01 +01:00 committed by Dennis Schwerdel
parent 5964625ec7
commit bf180ddea5
2 changed files with 5 additions and 5 deletions

View File

@ -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]

View File

@ -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 {