Bump dependencies

This commit is contained in:
Oscar Gustafsson 2023-10-15 22:05:52 +02:00
parent e3c60600f4
commit a8ee52a11e
3 changed files with 3 additions and 4 deletions

View file

@ -10,7 +10,6 @@ use fastwave_backend::parse_vcd;
#[derive(Parser)]
struct Cli {
/// The path to the file to read
#[clap(parse(from_os_str))]
path: std::path::PathBuf,
}

View file

@ -27,7 +27,7 @@ fn visit_all_scopes(vcd: &VCD) {
let SignalIdx(idx) = signal_idx;
indented_print(indent + 1, &format!("{},{}", signal.name(), idx));
}
visit_all_scope_children(child_scope_idx, vcd.clone(), indent + 1);
visit_all_scope_children(child_scope_idx, vcd, indent + 1);
}
}
}