-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (64 loc) · 1.83 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (64 loc) · 1.83 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "grimoire_css"
version = "1.8.1"
edition = "2024"
rust-version = "1.93.0"
authors = ["Dmitrii Shatokhin <dmtrshatokhin@gmail.com>"]
description = "A magical CSS engine for all environments"
autobins = false
license = "MIT"
keywords = ["css", "css-compiler", "styling", "web", "system"]
categories = ["web-programming", "development-tools"]
homepage = "https://github.com/persevie/grimoire-css"
documentation = "https://docs.rs/grimoire-css"
repository = "https://github.com/persevie/grimoire-css"
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE",
"assets/grimoire-css-logo.png",
]
[lib]
name = "grimoire_css_lib"
crate-type = ["lib"]
[profile.release]
lto = true
codegen-units = 1
[profile.profiling]
inherits = "release"
debug = 2
[dependencies]
console = "0.16.2"
dhat = { version = "0.3.3", optional = true }
glob = "0.3.3"
grimoire_css_color_toolkit = "1.0.0"
indicatif = "0.18.3"
lazy_static = "1.5.0"
lightningcss = { version = "1.0.0-alpha.68", features = ["browserslist"] }
miette = { version = "7.6.0", features = ["fancy"] }
once_cell = "1.21"
regex = "1.12.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0.17"
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread", "io-std", "io-util", "process", "time", "sync"], optional = true }
tower-lsp = { version = "0.20.0", optional = true }
ureq = { version = "2.12.1", default-features = false, features = ["tls"], optional = true }
[features]
default = ["analyzer"]
heap-profile = ["dhat"]
analyzer = []
lsp = ["analyzer", "dep:tokio", "dep:tower-lsp", "dep:ureq"]
[[bin]]
name = "grimoire_css"
path = "src/main.rs"
[[bin]]
name = "grimoire_css_lsp"
path = "src/bin/grimoire_css_lsp.rs"
required-features = ["lsp"]
[[bin]]
name = "grim"
path = "src/bin/grim.rs"
[dev-dependencies]
tempfile = "3.24.0"