mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
This removes the not-really-cyclic dependency that confuses rust-analyzer. See also: https://github.com/rust-lang/rust-analyzer/issues/2414
17 lines
269 B
TOML
17 lines
269 B
TOML
[package]
|
|
name = "typst-macros"
|
|
version = "0.1.0"
|
|
authors = ["The Typst Project Developers"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
test = false
|
|
doctest = false
|
|
bench = false
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "1", features = ["full"] }
|