[package]
edition = "2024"
name = "include_tt"
version = "1.1.1"
authors = ["Denis Kotlyarov (Денис Котляров) <denis2005991@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macros for ultra-flexible injection of token trees, literals, or binary data into Rust code from external files during compilation."
readme = "README.md"
keywords = [
"procedural-macros",
"macro",
"syntax-injection",
"tt-injection",
"clucompany",
]
categories = [
"development-tools",
"development-tools::build-utils",
"parsing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/clucompany/include_tt.git"
[features]
default = []
[lib]
name = "include_tt"
path = "src/lib.rs"
proc-macro = true
[[example]]
name = "basic_codegen"
path = "examples/basic_codegen.rs"
[[example]]
name = "basic_data"
path = "examples/basic_data.rs"
[[example]]
name = "mrules"
path = "examples/mrules.rs"
[[example]]
name = "template_macro"
path = "examples/template_macro.rs"
[[test]]
name = "break"
path = "tests/break.rs"
[[test]]
name = "empty"
path = "tests/empty.rs"
[[test]]
name = "expr_lit"
path = "tests/expr_lit.rs"
[[test]]
name = "shielding"
path = "tests/shielding.rs"
[[test]]
name = "unk_token"
path = "tests/unk_token.rs"
[dependencies.proc-macro2]
version = "1.0.106"
[dependencies.quote]
version = "1.0.45"
[dependencies.syn]
version = "2.0.117"
features = ["parsing"]
default-features = false