forked from stoically/syn-rsx
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
37 lines (34 loc) · 1.08 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[workspace.package]
description = "Rust templating for XML-based formats (HTML, SVG, MathML) implemented on top of proc-macro::TokenStreams"
authors = ["vldm <me@vldm.cc>", "stoically <stoically@protonmail.com>"]
keywords = ["syn", "jsx", "rsx", "html", "macro"]
edition = "2021"
repository = "https://github.com/rs-tml/rstml"
license = "MIT"
license-file = "LICENSE"
include = ["/src", "LICENSE"]
readme = "README.md"
[workspace]
resolver = "2"
members = ["examples/html-to-string-macro", "rstml-control-flow"]
[workspace.dependencies]
# Our packages
rstml = { version = "0.12.0", path = "rstml" }
rstml-control-flow = { version = "0.1.0", path = "rstml-control-flow" }
# external dependencies
proc-macro2 = { version = "1.0.47", features = ["span-locations"] }
quote = "1.0.21"
syn = { version = "2.0.15", features = [
"visit-mut",
"full",
"parsing",
"extra-traits",
] }
thiserror = "1.0.37"
syn_derive = "0.1.6"
proc-macro2-diagnostics = { version = "0.10", default-features = false }
derive-where = "1.2.5"
# dev-dependencies
criterion = "0.5.1"
eyre = "0.6.8"
trybuild = "1.0"