include-file 1.0.0

Include sections of files into Rust source code
Documentation
[package]
name = "include-file"
version = "1.0.0"
description = "Include sections of files into Rust source code"
readme = "README.md"
authors = ["Heath Stewart (https://github.com/heaths)"]
keywords = ["include", "macro", "markdown"]
categories = ["development-tools::build-utils", "development-tools::testing"]
edition = "2021"
rust-version = "1.85.0"
repository = "https://github.com/heaths/include-file"
license = "MIT"

[workspace]
members = ["tests/member"]
exclude = ["tests/non-member"]

[lib]
proc-macro = true

[features]
default = ["asciidoc", "org", "textile"]
asciidoc = []
org = []
textile = []

[dependencies]
proc-macro2 = { version = "1.0.103", features = ["span-locations"] }
quote = "1.0.42"
syn = "2.0.109"

[lints.clippy]
test_attr_in_doctest = "allow"

[lints.rust]
unexpected_cfgs = { level = "allow", check-cfg = [
  "cfg(rust_analyzer)",
  "cfg(span_locations)",
] }