[package]
edition = "2021"
name = "pounce-studio-core"
version = "0.7.0"
authors = ["John Kitchin <jkitchin@andrew.cmu.edu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust parsers and analysis helpers for pounce solve reports and POUNCEIT iter-dumps."
readme = "README.md"
keywords = [
"optimization",
"nlp",
"ipopt",
"pounce",
]
categories = [
"mathematics",
"parser-implementations",
"development-tools",
]
license = "EPL-2.0"
repository = "https://github.com/jkitchin/pounce"
[lib]
name = "pounce_studio_core"
path = "src/lib.rs"
[[bin]]
name = "pounce-studio"
path = "src/bin/pounce_studio.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"