[package]
edition = "2024"
rust-version = "1.85"
name = "oximo-expr"
version = "0.1.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 = "Arena-allocated expression tree for the oximo optimization framework"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/germanheim/oximo"
resolver = "2"
[lib]
name = "oximo_expr"
path = "src/lib.rs"
[[test]]
name = "arithmetic"
path = "tests/arithmetic.rs"
[dependencies.rustc-hash]
version = "2.1"
[dependencies.smallvec]
version = "1.15"
features = ["union"]
[dependencies.thiserror]
version = "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"