[package]
edition = "2024"
rust-version = "1.95"
name = "oxide-batch-plan"
version = "0.5.0"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Internal OxideBatch implementation crate; use oxide-batch instead"
readme = "README.md"
keywords = [
"batch",
"job",
"internal",
]
categories = ["asynchronous"]
license = "Apache-2.0"
repository = "https://github.com/luceat-lux-vestra/oxide-batch"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "oxide_batch_plan"
path = "src/lib.rs"
[dependencies.oxide-batch-core]
version = "=0.5.0"
[dependencies.serde_json]
version = "1.0.151"
[lints.clippy]
expect_used = "deny"
panic = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"