rs-graph 0.19.1

A library for graph algorithms and combinatorial optimization
Documentation
[package]
name = "rs-graph"
version = "0.19.1"
edition = "2018"
authors = ["Frank Fischer <frank-fischer@shadow-soft.de>"]
description = "A library for graph algorithms and combinatorial optimization"
license = "GPL-3.0+"
homepage = "https://chiselapp.com/user/fifr/repository/rs-graph"
repository = "https://chiselapp.com/user/fifr/repository/rs-graph"
keywords = ["algorithm", "optimization", "network", "graph", "combinatorics"]
categories = ["algorithms"]

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [ "--html-in-header", "src/mathjax.txt" ]

[features]
default = []
dimacs = []
steinlib = ["peg"]
serialize = ["serde", "serde_derive"]

[dependencies]
either = "^1.5"
num-traits = "^0.2"
num-iter = "^0.1.33"
peg = { version = "^0.6", optional = true }
serde = { version = "^1.0", optional = true }
serde_derive = { version = "^1.0", optional = true }

[profile.release]
debug = 2

[dev-dependencies]
rustop = "^1.0.4"
serde_json = "^1.0"
time = "^0.2"
ordered-float = "^1.0"

[[example]]
name = "dinic"
required-features = ["dimacs"]

[[example]]
name = "edmondskarp"
required-features = ["dimacs"]

[[example]]
name = "pushrelabel"
required-features = ["dimacs"]

[[test]]
name = "maxflow"
path = "tests/maxflow.rs"
required-features = ["dimacs"]