[package]
name = "include-pnm"
version = "1.0.0"
description = "Include PNM images directly in Rust code."
authors = ["ltdk <usr@ltdk.xyz>"]
repository = "https://codeberg.org/ltdk/include-pnm"
readme = "README.md"
license-file = "LICENSE.md"
edition = "2024"
rust-version = "1.88.0"
categories = []
include = ["src/**/*", "tests/*", "LICENSE.md", "README.md", "CHANGELOG.md"]
[dependencies]
[dev-dependencies]
[build-dependencies]
[lints.clippy]
borrow_as_ptr = "warn"
default_trait_access = "warn"
doc_markdown = "warn"
filter_map_next = "warn"
if_not_else = "warn"
ignored_unit_patterns = "warn"
inconsistent_struct_constructor = "warn"
manual_assert = "warn"
manual_is_power_of_two = "warn"
map_unwrap_or = "warn"
match_same_arms = "warn"
missing_docs_in_private_items = "warn"
needless_continue = "warn"
needless_raw_string_hashes = "warn"
redundant_closure_for_method_calls = "warn"
redundant_else = "warn"
ref_as_ptr = "warn"
semicolon_if_nothing_returned = "warn"
unnecessary_semicolon = "warn"
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
[lints.rustdoc]
missing_crate_level_docs = "warn"
[features]
nightly = []
[lib]
proc-macro = true