[package]
edition = "2024"
rust-version = "1.88"
name = "opos"
version = "0.0.0"
authors = ["refcell"]
build = false
exclude = ["**/target"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ordering Primitives for Optimal Scheduling"
homepage = "https://github.com/refcell/opos"
readme = "README.md"
license = "MIT"
repository = "https://github.com/refcell/opos"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = []
std = []
[lib]
name = "opos"
path = "src/lib.rs"
[dependencies]
[lints.clippy]
missing-const-for-fn = "warn"
option-if-let-else = "warn"
redundant-clone = "warn"
use-self = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
missing-debug-implementations = "warn"
missing-docs = "warn"
rust-2018-idioms = "deny"
unnameable-types = "warn"
unreachable-pub = "warn"
unused-must-use = "deny"
[lints.rustdoc]
all = "warn"