[package]
edition = "2021"
name = "pldag"
version = "5.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A DAG-based combinatorial-model framework."
homepage = "https://github.com/ourstudio-se/pldag-rust"
readme = "README.md"
keywords = [
"ilp",
"milp",
"combinatorics",
"modelling",
"constraints",
]
categories = [
"science",
"mathematics",
"algorithms",
]
license = "MIT"
repository = "https://github.com/ourstudio-se/pldag-rust"
[features]
default = []
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.async-trait]
version = "0.1"
[dependencies.bimap]
version = "0.6.3"
[dependencies.indexmap]
version = "2.14.0"
[dependencies.itertools]
version = "0.14.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.tracing]
version = "0.1.44"
features = ["attributes"]
optional = true
default-features = false
[dev-dependencies.glpk-rust]
version = "0.1.15"
[dev-dependencies.tokio]
version = "1.52.2"
features = [
"rt",
"macros",
"rt-multi-thread",
]