Skip to content

Commit d3e2f33

Browse files
authored
Remove a dbg! (#1572)
After following the installation step at https://github.com/cross-rs/cross?tab=readme-ov-file#installation I see the following output when running the commands: ``` ❯ ccrossbuild --target aarch64-unknown-linux-gnu [src/lib.rs:944:30] workspace_metadata.get("cross") = None ``` which looks like a leftover.
2 parents ac4c11c + b50ee7b commit d3e2f33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ pub fn toml(metadata: &CargoMetadata, msg_info: &mut MessageInfo) -> Result<Cros
941941
if let Some(workspace_metadata) = &metadata.metadata {
942942
let workspace_metadata =
943943
serde_json::de::from_str::<serde_json::Value>(workspace_metadata.get())?;
944-
if let Some(cross) = dbg!(workspace_metadata.get("cross")) {
944+
if let Some(cross) = workspace_metadata.get("cross") {
945945
found = Some(
946946
metadata
947947
.workspace_root

0 commit comments

Comments
 (0)