[package]
edition = "2024"
rust-version = "1.92"
name = "include-utils"
version = "0.2.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "mdBook-like include macro as the powerful replacement for the standard `include_str` macro."
documentation = "https://docs.rs/include-utils"
readme = "README.md"
keywords = [
"no_std",
"documentation",
"rustdoc",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/alekseysidorov/include-utils"
[features]
default = []
workspace = ["include-utils-macro/workspace"]
[lib]
name = "include_utils"
path = "src/lib.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.include-utils-macro]
version = "0.2"
[lints.clippy]
module_name_repetitions = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"