-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 841 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 841 Bytes
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
[package]
name = "maud-extensions"
version = "0.4.0"
edition = "2024"
description = "Component, inline CSS/JS, and font helper macros for Maud views."
license = "MIT OR Apache-2.0"
repository = "https://github.com/eboody/maud-extensions"
homepage = "https://github.com/eboody/maud-extensions"
readme = "README.md"
keywords = ["maud", "macros", "css", "javascript", "html"]
categories = ["web-programming", "template-engine"]
[workspace]
members = ["maud-extensions-runtime"]
[lib]
name = "maud_extensions"
proc-macro = true
[dependencies]
cssparser = "0.33.0"
proc-macro2 = "1.0.101"
quote = "1.0.41"
swc_common = "18.0.1"
swc_ecma_parser = "33.0.1"
syn = { version = "2.0.106", features = ["full"] }
[dev-dependencies]
maud = "0.27"
maud-extensions-runtime = { version = "0.2.0", path = "maud-extensions-runtime" }
trybuild = "1.0.112"