19 lines
507 B
TOML
19 lines
507 B
TOML
[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 }
|