Skip to content

Commit

Permalink
debug some more
Browse files Browse the repository at this point in the history
  • Loading branch information
segfault-magnet committed Dec 5, 2024
1 parent db8dd97 commit 453d76b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/versions-replacer/src/metadata.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,10 @@ pub fn collect_versions_from_cargo_toml(
.iter()
.map(|package| (package.name.clone(), package.version.to_string()))
.collect::<HashMap<_, _>>();
eprintln!("Full version map:");
for (key, value) in &version_map {
eprintln!("{}: {}", key, value);
}

Ok(version_map)
}

0 comments on commit 453d76b

Please sign in to comment.