[package]
edition = "2021"
rust-version = "1.85"
name = "presolve-cli"
version = "0.1.0-alpha.8"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Presolve compiler and application command-line interface."
homepage = "https://github.com/fierstdev/presolve"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/fierstdev/presolve"
[features]
browser-tests = []
[lib]
name = "presolve_cli"
path = "src/lib.rs"
[[bin]]
name = "presolve"
path = "src/main.rs"
[[test]]
name = "application_publication"
path = "tests/application_publication.rs"
[[test]]
name = "component_fixtures"
path = "tests/component_fixtures.rs"
[[test]]
name = "context_fixtures"
path = "tests/context_fixtures.rs"
[[test]]
name = "ergonomic_project"
path = "tests/ergonomic_project.rs"
[[test]]
name = "explain"
path = "tests/explain.rs"
[[test]]
name = "l9_cli_commands"
path = "tests/l9_cli_commands.rs"
[[test]]
name = "production_baseline"
path = "tests/production_baseline.rs"
[[test]]
name = "production_budgets"
path = "tests/production_budgets.rs"
[[test]]
name = "production_runtime_fixtures"
path = "tests/production_runtime_fixtures.rs"
[[test]]
name = "runtime_browser"
path = "tests/runtime_browser.rs"
required-features = ["browser-tests"]
[dependencies.presolve_compiler]
version = "0.1.0-alpha.8"
package = "presolve-compiler"
[dependencies.presolve_parser]
version = "0.1.0-alpha.8"
package = "presolve-parser"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[lints.clippy]
correctness = "deny"
[lints.rust]
unsafe_code = "forbid"