Skip to content

Commit

Permalink
fix(crates-io): pin to specific version (#4254)
Browse files Browse the repository at this point in the history
  • Loading branch information
StackOverflowExcept1on authored and breathx committed Sep 26, 2024
1 parent f9114db commit 12d7cd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/crates-io/src/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl Workspace {
continue;
}

dep["version"] = toml_edit::value(version.clone());
dep["version"] = toml_edit::value(format!("={version}"));

if simulate {
dep["registry"] = toml_edit::value(CARGO_REGISTRY_NAME);
Expand Down

0 comments on commit 12d7cd3

Please sign in to comment.