[package]
edition = "2021"
name = "ommx"
version = "2.5.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Open Mathematical prograMming eXchange (OMMX)"
documentation = "https://docs.rs/ommx/"
readme = "README.md"
keywords = [
"optimization",
"ommx",
]
categories = [
"data-structures",
"mathematics",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Jij-Inc/ommx"
[features]
built = ["dep:built"]
default = ["remote-artifact"]
remote-artifact = [
"ocipkg/remote",
"built",
]
[lib]
name = "ommx"
path = "src/lib.rs"
[[bin]]
name = "ommx"
path = "src/bin/ommx.rs"
required-features = [
"remote-artifact",
"built",
]
[[example]]
name = "create_artifact"
path = "examples/create_artifact.rs"
required-features = [
"remote-artifact",
"built",
]
[[example]]
name = "create_qubo_manually"
path = "examples/create_qubo_manually.rs"
[[example]]
name = "dependent_variables"
path = "examples/dependent_variables.rs"
[[example]]
name = "pull_artifact"
path = "examples/pull_artifact.rs"
required-features = ["remote-artifact"]
[[bench]]
name = "evaluate"
path = "benches/evaluate.rs"
harness = false
[[bench]]
name = "mul"
path = "benches/mul.rs"
harness = false
[[bench]]
name = "partial_evaluate"
path = "benches/partial_evaluate.rs"
harness = false
[[bench]]
name = "sum"
path = "benches/sum.rs"
harness = false
[dependencies.anyhow]
version = "1.0.100"
[dependencies.approx]
version = "0.5.1"
[dependencies.base64]
version = "0.22.1"
[dependencies.chrono]
version = "0.4.43"
[dependencies.clap]
version = "4.5.54"
features = ["derive"]
[dependencies.colored]
version = "3.1.1"
[dependencies.csv]
version = "1.3.0"
[dependencies.derive_more]
version = "2.1.1"
features = ["full"]
[dependencies.directories]
version = "6.0.0"
[dependencies.env_logger]
version = "0.11.8"
[dependencies.flate2]
version = "1.1.8"
[dependencies.fnv]
version = "1.0.7"
[dependencies.getset]
version = "0.1.6"
[dependencies.indexmap]
version = "2.13.0"
[dependencies.itertools]
version = "0.14.0"
[dependencies.katexit]
version = "0.1.5"
[dependencies.log]
version = "0.4.29"
[dependencies.maplit]
version = "1.0.2"
[dependencies.num]
version = "0.4.3"
[dependencies.ocipkg]
version = "0.4.0"
default-features = false
[dependencies.ordered-float]
version = "5.1.0"
features = ["serde"]
[dependencies.petgraph]
version = "0.8.3"
[dependencies.proptest]
version = "1.8.0"
[dependencies.prost]
version = "0.12.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.similar]
version = "2.7.0"
[dependencies.smallvec]
version = "1.15.1"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.url]
version = "2.5.8"
[dependencies.uuid]
version = "1.19.0"
features = ["v4"]
[dev-dependencies.colored]
version = "3.1.1"
[dev-dependencies.criterion]
version = "2.8.0"
package = "codspeed-criterion-compat"
[dev-dependencies.indoc]
version = "2.0.6"
[dev-dependencies.insta]
version = "1.46.1"
features = ["yaml"]
[build-dependencies.built]
version = "0.8.0"
features = ["git2"]
optional = true