vf3 0.1.0

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

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

[[example]]
name = "basic"

[[example]]
name = "bench-harness"

[dependencies]
anyhow = "1"
thiserror = "2"
clap = { version = "4.5", features = ["derive"] }
serde_json = "1.0"

[dev-dependencies]
criterion = { version = "0.7", features = ["html_reports"] }

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

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

[[bench]]
name = "vf3_benchmarks"
harness = false

[[bench]]
name = "vf3_vs_cpp"
harness = false
required-features = ["compare-cpp"]