diff --git a/src/main.rs b/src/main.rs index 9254e4a..ee71801 100644 --- a/src/main.rs +++ b/src/main.rs @@ -113,8 +113,8 @@ fn freeze_repos(dir: &str) -> anyhow::Result<()> { } fn thaw_repos(dir: &str, lockfile: &str) -> anyhow::Result<()> { - let lockfile = - fs::read_to_string(lockfile).unwrap_or_else(|_| panic!("unable to read lockfile from {}", lockfile)); + let lockfile = fs::read_to_string(lockfile) + .unwrap_or_else(|_| panic!("unable to read lockfile from {}", lockfile)); let repos: HashMap = toml::from_str(&lockfile)?; for (name, repo) in repos {