[package]
edition = "2021"
rust-version = "1.85.0"
name = "include-file"
version = "1.0.0"
authors = ["Heath Stewart (https://github.com/heaths)"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Include sections of files into Rust source code"
readme = "README.md"
keywords = [
"include",
"macro",
"markdown",
]
categories = [
"development-tools::build-utils",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/heaths/include-file"
[features]
asciidoc = []
default = [
"asciidoc",
"org",
"textile",
]
org = []
textile = []
[lib]
name = "include_file"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "non_member"
path = "tests/non_member.rs"
[[test]]
name = "readme"
path = "tests/readme.rs"
[dependencies.proc-macro2]
version = "1.0.103"
features = ["span-locations"]
[dependencies.quote]
version = "1.0.42"
[dependencies.syn]
version = "2.0.109"
[lints.clippy]
test_attr_in_doctest = "allow"
[lints.rust.unexpected_cfgs]
level = "allow"
priority = 0
check-cfg = [
"cfg(rust_analyzer)",
"cfg(span_locations)",
]