rs-graph 0.7.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]
name = "rs-graph"
version = "0.7.0"
authors = ["Frank Fischer <frank-fischer@shadow-soft.de>"]
build = "build.rs"
description = "A library for graph algorithms and combinatorial optimization"
homepage = "http://www.mathematik.uni-kassel.de/~fifr/fossils/rs-graph"
documentation = "https://docs.rs/rs-graph"
keywords = ["algorithm", "optimization", "network", "graph", "combinatorics"]
categories = ["algorithms"]
license = "GPL-3.0+"
repository = "http://www.mathematik.uni-kassel.de/~fifr/fossils/rs-graph"

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

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

[[example]]
name = "pushrelabel"
required-features = ["dimacs"]
[dependencies.num-iter]
version = "^0.1.33"

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

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

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

[dependencies.quick-error]
version = "^1.0.0"
optional = true
[dev-dependencies.rustop]
version = "^1.0"

[dev-dependencies.time]
version = "^0.1.37"

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

[dev-dependencies.ordered-float]
version = "^0.5.0"
[build-dependencies.peg]
version = "^0.5"
optional = true

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