-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathCargo.toml
62 lines (49 loc) · 1.25 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
51
52
53
54
55
56
57
58
59
60
61
62
[package]
authors = ["Praveen Perera <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
name = "rustywind"
version = "0.20.0"
homepage = "https://github.com/avencera/rustywind"
repository = "https://github.com/avencera/rustywind"
documentation = "https://docs.rs/rustywind"
description = "A CLI to sort tailwind CSS classes"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# cli
clap = { version = "4.3", features = ["cargo", "derive", "unstable-styles"] }
indoc = "2.0"
colored = "2.1"
# files
ignore = "0.4"
# utils
itertools = "0.11"
once_cell = "1.18"
# string matching
aho-corasick = "1.0"
regex = "1.9"
# logging
env_logger = "0.10"
log = "0.4"
# parallel
rayon = "1.5"
# http
ureq = "2.7"
# errors
color-eyre = "0.6"
eyre = "0.6"
# json parsing
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
rustls = { version = "0.21.6", features = ["dangerous_configuration"] }
anstyle = "1.0.1"
[dev-dependencies]
pretty_assertions = "1.4"
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }.tar.gz"
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"