[package]
edition = "2024"
rust-version = "1.85.0"
name = "boxferry-engine"
version = "0.1.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Conversion planning, policy, capability, and diagnostic engine for BoxFerry"
homepage = "https://www.strukturpiloten.de/"
readme = "README.md"
keywords = [
"containers",
"compose",
"podman",
"quadlet",
"migration",
]
categories = [
"command-line-utilities",
"config",
"development-tools",
]
license = "MPL-2.0"
repository = "https://github.com/Strukturpiloten/boxferry"
[lib]
name = "boxferry_engine"
path = "src/lib.rs"
[dependencies.boxferry-model]
version = "0.1.1"
[lints.clippy]
dbg_macro = "warn"
expect_used = "warn"
panic = "warn"
todo = "warn"
unimplemented = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
unused_lifetimes = "warn"
unused_qualifications = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1