rs-graph 0.14.1

A library for graph algorithms and combinatorial optimization
Documentation
[package]
name = "rs-graph"
version = "0.14.1"
authors = ["Frank Fischer <frank-fischer@shadow-soft.de>"]
description = "A library for graph algorithms and combinatorial optimization"
license = "GPL-3.0+"
homepage = "http://fifr.spdns.de/fossils/rs-graph"
repository = "http://fifr.spdns.de/fossils/rs-graph"
documentation = "https://docs.rs/rs-graph"
keywords = ["algorithm", "optimization", "network", "graph", "combinatorics"]
categories = ["algorithms"]
build = "build.rs"

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

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

[build-dependencies]
peg = { version = "^0.5", optional = true }

[dev-dependencies]
rustop = "^1.0"
serde_json = "^1.0"
time = "^0.1.37"
decorum = "^0.0.10"

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

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

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