Skip to content

chore: update version to 0.3.2 #36

chore: update version to 0.3.2

chore: update version to 0.3.2 #36

Triggered via push February 9, 2024 17:03
Status Success
Total duration 11s
Artifacts

labeler.yml

on: push
labeler
4s
labeler
Fit to window
Zoom out
Zoom in

Annotations

10 warnings
function `graph_edit_distance` is never used: src/graph/ged.rs#L72
warning: function `graph_edit_distance` is never used --> src/graph/ged.rs:72:4 | 72 | fn graph_edit_distance(graph1: &DiGraph<(), ()>, graph2: &DiGraph<(), ()>) -> usize { | ^^^^^^^^^^^^^^^^^^^
function `calculate_edit_distance` is never used: src/graph/ged.rs#L47
warning: function `calculate_edit_distance` is never used --> src/graph/ged.rs:47:4 | 47 | fn calculate_edit_distance( | ^^^^^^^^^^^^^^^^^^^^^^^
function `ged_recursive` is never used: src/graph/ged.rs#L16
warning: function `ged_recursive` is never used --> src/graph/ged.rs:16:4 | 16 | fn ged_recursive( | ^^^^^^^^^^^^^
constant `COST_ADD_DEL` is never used: src/graph/ged.rs#L14
warning: constant `COST_ADD_DEL` is never used --> src/graph/ged.rs:14:7 | 14 | const COST_ADD_DEL: usize = 1; | ^^^^^^^^^^^^
constant `COST_SUB` is never used: src/graph/ged.rs#L13
warning: constant `COST_SUB` is never used --> src/graph/ged.rs:13:7 | 13 | const COST_SUB: usize = 1; | ^^^^^^^^
constant `COST_DEL` is never used: src/graph/ged.rs#L12
warning: constant `COST_DEL` is never used --> src/graph/ged.rs:12:7 | 12 | const COST_DEL: usize = 1; | ^^^^^^^^
constant `COST_ADD` is never used: src/graph/ged.rs#L11
warning: constant `COST_ADD` is never used --> src/graph/ged.rs:11:7 | 11 | const COST_ADD: usize = 1; | ^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
unreachable pattern: src/main.rs#L178
warning: unreachable pattern --> src/main.rs:178:9 | 178 | _ => info!("Subcommand not implemented yet!"), | ^ | = note: `#[warn(unreachable_patterns)]` on by default
unused variable: `graph1`: src/graph/ged.rs#L48
warning: unused variable: `graph1` --> src/graph/ged.rs:48:5 | 48 | graph1: &DiGraph<(), ()>, | ^^^^^^ help: if this is intentional, prefix it with an underscore: `_graph1`
unused variable: `mapped_nodes1`: src/graph/ged.rs#L54
warning: unused variable: `mapped_nodes1` --> src/graph/ged.rs:54:9 | 54 | let mapped_nodes1: HashSet<_> = mapping.iter().filter_map(|(a, _)| *a).collect(); | ^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_mapped_nodes1` | = note: `#[warn(unused_variables)]` on by default