[package]
edition = "2024"
rust-version = "1.89"
name = "token-goblin"
version = "0.1.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Inline procedural macros without a separate proc-macro crate."
readme = "README.md"
keywords = [
"proc-macro",
"macro",
"reflection",
"comptime",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/vldm/token-goblin"
[features]
default = []
use_release_profile = []
[lib]
name = "token_goblin"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "deps"
path = "tests/deps.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "lazy"
path = "tests/lazy.rs"
[[test]]
name = "multiple_forms"
path = "tests/multiple_forms.rs"
[[test]]
name = "snif"
path = "tests/snif.rs"
[[test]]
name = "spit"
path = "tests/spit.rs"
[[test]]
name = "testbed"
path = "tests/testbed.rs"
[dependencies.blake3]
version = "1.8"
[dependencies.libloading]
version = "0.9"
[dependencies.proc-macro2]
version = "1.0"
features = ["span-locations"]
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = ["full"]
[dependencies.toml]
version = "1.1.2"
[dev-dependencies.proc-macro2]
version = "1.0"
features = ["span-locations"]
[dev-dependencies.syn]
version = "2.0"
features = ["full"]
[dev-dependencies.trybuild]
version = "1.0"