vf3 0.1.0

Rust implementation of VF3/VF3L subgraph isomorphism algorithms
Documentation
[[bench]]
harness = false
name = "vf3_benchmarks"
path = "benches/vf3_benchmarks.rs"

[[bench]]
harness = false
name = "vf3_vs_cpp"
path = "benches/vf3_vs_cpp.rs"
required-features = ["compare-cpp"]

[[bin]]
name = "vf3"
path = "src/bin/vf3.rs"

[dependencies.anyhow]
version = "1"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2"

[dependencies.vf3lib-rs]
optional = true
version = "0.1.0"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.7"

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "bench-harness"
path = "examples/bench-harness.rs"

[features]
compare-cpp = ["vf3lib-rs"]
default = []
profile = []

[lib]
name = "vf3"
path = "src/lib.rs"

[package]
authors = ["Krzysztof Woś"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures"]
description = "Rust implementation of VF3/VF3L subgraph isomorphism algorithms"
documentation = "https://docs.rs/vf3"
edition = "2024"
homepage = "https://github.com/krzysztofwos/vf3"
keywords = ["graphs", "subgraph-isomorphism", "vf3", "algorithms", "pattern-matching"]
license = "MIT OR Apache-2.0"
name = "vf3"
readme = "README.md"
repository = "https://github.com/krzysztofwos/vf3"
rust-version = "1.85"
version = "0.1.0"

[[test]]
name = "compare_with_cpp"
path = "tests/compare_with_cpp.rs"

[[test]]
name = "edge_labels"
path = "tests/edge_labels.rs"

[[test]]
name = "induced_edge_cases"
path = "tests/induced_edge_cases.rs"

[[test]]
name = "labels"
path = "tests/labels.rs"

[[test]]
name = "parity_sweep"
path = "tests/parity_sweep.rs"

[[test]]
name = "streaming"
path = "tests/streaming.rs"

[[test]]
name = "undirected_mode"
path = "tests/undirected_mode.rs"