rs-graph 0.17.0

A library for graph algorithms and combinatorial optimization
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "rs-graph"
version = "0.17.0"
authors = ["Frank Fischer <frank-fischer@shadow-soft.de>"]
build = "build.rs"
description = "A library for graph algorithms and combinatorial optimization"
homepage = "https://chiselapp.com/user/fifr/repository/rs-graph"
keywords = ["algorithm", "optimization", "network", "graph", "combinatorics"]
categories = ["algorithms"]
license = "GPL-3.0+"
repository = "https://chiselapp.com/user/fifr/repository/rs-graph"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--html-in-header", "src/mathjax.txt"]

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

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

[[example]]
name = "pushrelabel"
required-features = ["dimacs"]
[dependencies.either]
version = "^1.5"

[dependencies.num-iter]
version = "^0.1.33"

[dependencies.num-traits]
version = "^0.2"

[dependencies.serde]
version = "^1.0"
optional = true

[dependencies.serde_derive]
version = "^1.0"
optional = true
[dev-dependencies.ordered-float]
version = "^1.0"

[dev-dependencies.rustop]
version = "^1.0.4"

[dev-dependencies.serde_json]
version = "^1.0"

[dev-dependencies.time]
version = "^0.1.37"
[build-dependencies.peg]
version = "^0.5"
optional = true

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