summaryrefslogtreecommitdiff
path: root/macros/Cargo.toml
blob: a1cd0c2771413e2bcf422877d9e257f1b7e5909b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "typst-macros"
version = "0.2.0"
authors = ["The Typst Project Developers"]
edition = "2021"
description = "Proc-macros for Typst."
homepage = "https://typst.app"
repository = "https://github.com/typst/typst"
license = "Apache-2.0"
keywords = ["typst"]

[lib]
proc-macro = true
test = false
doctest = false
bench = false

[dependencies]
heck = "0.4"
proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["full", "extra-traits"] }