-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (29 loc) · 890 Bytes
/
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
[package]
name = "sailfish-minify"
version = "0.2.2"
authors = ["Abrudan Paul - Andrei <[email protected]>"]
description = "Hacky but simple minification support for sailfish, using html-minifier by default"
homepage = "https://github.com/pauldotsh/sailfish-minify"
repository = "https://github.com/pauldotsh/sailfish-minify"
keywords = ["minification", "html", "sailfish"]
categories = ["template-engine"]
license = "MIT"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "sailfish_minify"
proc-macro = true
test = false
doctest = false
[features]
default = ["minify-components"]
minify-components = []
[dependencies]
proc-macro2 = "1.0.56"
syn = "2.0.66"
regex = "1.10.5"
quote = "1.0.36"
[dependencies.sailfish-compiler]
version = "0.8.3"
default-features = false
features = ["procmacro"]