typst/macros/Cargo.toml
Laurenz 46921a8c28 Separate test crate
This removes the not-really-cyclic dependency that confuses rust-analyzer. See also: https://github.com/rust-lang/rust-analyzer/issues/2414
2022-11-03 16:13:35 +01:00

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"] }