oximo 0.2.0

A Rust algebraic modeling library for solving optimization problems
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 = "2024"
rust-version = "1.85"
name = "oximo"
version = "0.2.0"
authors = ["Germán Martín Heim <german.martin.heim@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust algebraic modeling library for solving optimization problems"
readme = "README.md"
keywords = [
    "optimization",
    "math",
    "science",
]
categories = [
    "mathematics",
    "science",
    "algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/oximo-rs/oximo"
resolver = "2"

[features]
baron = ["dep:oximo-baron"]
default = [
    "highs",
    "io",
]
gams = ["dep:oximo-gams"]
gurobi = ["dep:oximo-gurobi"]
highs = ["dep:oximo-highs"]
io = ["dep:oximo-io"]

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

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

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

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

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

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

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

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

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

[dependencies.oximo-baron]
version = "0.2.0"
optional = true

[dependencies.oximo-core]
version = "0.2.0"

[dependencies.oximo-expr]
version = "0.2.0"

[dependencies.oximo-gams]
version = "0.2.0"
optional = true

[dependencies.oximo-gurobi]
version = "0.2.0"
optional = true

[dependencies.oximo-highs]
version = "0.2.0"
optional = true

[dependencies.oximo-io]
version = "0.2.0"
optional = true

[dependencies.oximo-solver]
version = "0.2.0"

[lints.clippy]
doc_markdown = "allow"
elidable_lifetime_names = "allow"
items_after_statements = "allow"
missing_fields_in_debug = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_lifetimes = "allow"
needless_pass_by_value = "allow"
return_self_not_must_use = "allow"
similar_names = "allow"
unnecessary_literal_bound = "allow"
upper_case_acronyms = "allow"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "deny"