forked from scoville/tailwind-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (48 loc) · 1.26 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
38
39
40
41
42
43
44
45
46
47
48
49
50
[workspace]
resolver = "2"
members = [
"pyaco",
"pyaco-node",
"pyaco-generate",
"pyaco-core",
"pyaco-macro",
"pyaco-validate",
]
[workspace.package]
authors = ["Kévin COMBRIAT <[email protected]>"]
rust-version = "1.68.2"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0.86"
askama = "0.12.1"
async-trait = "0.1.81"
clap = { version = "4.3.24", features = ["derive"] }
compact_str = "0.8.0"
convert_case = "0.6.0"
cssparser = "0.34.0"
dunce = "1.0.5"
futures = { version = "0.3.30", default-features = false, features = ["alloc"] }
glob = "0.3.1"
grep-matcher = "0.1.7"
grep-regex = "0.1.12"
grep-searcher = "0.1.13"
napi = { version = "2.16.8", features = ["serde-json", "tokio_rt"] }
napi-derive = "2.16.10"
notify = "6.1.1"
notify-debouncer-mini = { version = "0.4.1", default-features = false }
once_cell = "1.19.0"
proc-macro-error = "1.0.4"
pyaco-core = { path = "./pyaco-core" }
pyaco-generate = { path = "./pyaco-generate" }
pyaco-validate = { path = "./pyaco-validate" }
quote = "1.0.36"
regex = "1.10.6"
serde = { version = "1.0.205", features = ["derive"] }
syn = "2.0.72"
thiserror = "1.0.63"
toml = "0.8.19"
tokio = { version = "1.38.1", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
ureq = "2.10.0"
url = "2.5.2"