2022-11-06 00:50:31 +01:00
|
|
|
[package]
|
|
|
|
name = "tvix-eval-builtin-macros"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = [ "Griffin Smith <root@gws.fyi>" ]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-28 23:42:29 +02:00
|
|
|
syn = { version = "1.0.109", features = ["full", "parsing", "printing", "visit", "visit-mut", "extra-traits"] }
|
2024-08-28 23:54:46 +02:00
|
|
|
quote = { workspace = true }
|
|
|
|
proc-macro2 = { workspace = true }
|
2022-11-06 00:50:31 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tvix-eval = { path = "../" }
|