pldag 4.2.0

A DAG-based combinatorial-model framework with optional GLPK solving back-end.
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 = "pldag"
version = "4.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A DAG-based combinatorial-model framework with optional GLPK solving back-end."
homepage = "https://github.com/ourstudio-se/pldag-rust"
readme = "README.md"
keywords = [
    "ilp",
    "milp",
    "combinatorics",
    "glpk",
]
categories = [
    "science",
    "mathematics",
    "algorithms",
]
license = "MIT"
repository = "https://github.com/ourstudio-se/pldag-rust"

[features]
default = []
glpk = ["glpk-rust"]
trace = ["tracing"]

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

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

[[test]]
name = "solve"
path = "tests/solve.rs"

[dependencies.bimap]
version = "0.6.3"

[dependencies.glpk-rust]
version = "0.1.12"
optional = true
default-features = false

[dependencies.indexmap]
version = "2.12.1"

[dependencies.itertools]
version = "0.14.0"

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

[dependencies.serde_json]
version = "1.0.145"

[dependencies.tracing]
version = "0.1"
features = ["attributes"]
optional = true
default-features = false

[dev-dependencies]