[package]
edition = "2024"
name = "python-instruction-dsl-proc"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A procedural macro for defining Python instructions in a DSL."
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/Svenskithesource/python-instruction-dsl-proc"
[lib]
name = "python_instruction_dsl_proc"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "test_simple"
path = "tests/test_simple.rs"
[dependencies.heck]
version = "0.5.0"
[dependencies.paste]
version = "1.0.15"
[dependencies.proc-macro2]
version = "1.0.106"
[dependencies.quote]
version = "1.0.42"
[dependencies.syn]
version = "2.0.111"
features = ["full"]
[dev-dependencies]