17 lines
254 B
TOML
17 lines
254 B
TOML
|
|
[package]
|
||
|
|
name = "codex-test-macros"
|
||
|
|
version.workspace = true
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
|
||
|
|
[lib]
|
||
|
|
proc-macro = true
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
proc-macro2 = "1"
|
||
|
|
quote = "1"
|
||
|
|
syn = { version = "2", features = ["full"] }
|
||
|
|
|
||
|
|
[lints]
|
||
|
|
workspace = true
|