vf2 1.0.1

VF2 subgraph isomorphism algorithm in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "vf2"
authors = ["Owen Troke-Billard"]
version = "1.0.1"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "VF2 subgraph isomorphism algorithm in Rust."
repository = "https://github.com/OwenTrokeBillard/vf2"
readme = "README.md"
keywords = ["vf2", "graph", "isomorphism"]
categories = ["mathematics", "science", "algorithms"]

[features]
default = ["petgraph"]
petgraph = ["dep:petgraph"]

[dependencies]
petgraph = { version = "0.6", optional = true, default-features = false }