summaryrefslogtreecommitdiff
path: root/macros/Cargo.toml
blob: 895d8321bd48610b03f8e317eb9b6c74f6c05da5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "typst-macros"
version.workspace = true
rust-version.workspace = true
authors.workspace = true
edition.workspace = true
description = "Proc-macros for Typst."
homepage.workspace = true
repository.workspace = true
license.workspace = true
keywords.workspace = true

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