netoptim-rs 0.1.2

Network Optimization Algorithms in Rust
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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "netoptim-rs"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Network Optimization Algorithms in Rust"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/luk036/netoptim-rs"

[package.metadata.docs.rs]
rustdoc-args = [
    "--html-in-header",
    "src/doc-header.html",
]

[features]
default = ["std"]
std = [
    "num-traits/std",
    "dep:env_logger",
    "dep:log",
]

[lib]
name = "netoptim_rs"
path = "src/lib.rs"

[[example]]
name = "dijkstra_example"
path = "examples/dijkstra_example.rs"

[[example]]
name = "find_negative_cycle"
path = "examples/find_negative_cycle.rs"

[[example]]
name = "neg_cycle_example"
path = "examples/neg_cycle_example.rs"

[[example]]
name = "quickcheck_tests"
path = "examples/quickcheck_tests.rs"

[[example]]
name = "utils_example"
path = "examples/utils_example.rs"

[[bench]]
name = "benches"
path = "benches/benches.rs"

[dependencies.env_logger]
version = "0.11.10"
optional = true

[dependencies.log]
version = "0.4.32"
optional = true

[dependencies.num]
version = "0.4.3"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.petgraph]
version = "0.8.3"
features = [
    "serde-1",
    "stable_graph",
]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.150"

[dev-dependencies.criterion]
version = "0.8.2"

[dev-dependencies.quickcheck]
version = "1.0"