-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (37 loc) · 826 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
36
37
38
39
40
41
42
43
[package]
name = "srcset"
version = "1.4.0"
authors = ["A Boston"]
description = "A tool that generates multiple images used in responsive web and mobile sites and apps."
edition = "2021"
readme = "README.md"
repository = "https://github.com/adrianboston/srcset"
keywords = ["cli", "image", "responsive-images", "mobile-web"]
categories = ["command-line-utilities"]
[dependencies]
argparse = "0.2.2"
image = {version = "0.24.6", features = ["webp-encoder"]}
rayon = "1.5"
regex = "1"
lazy_static = "1.4.0"
anyhow = "1.0"
# print stuff
human_bytes = "0.3.0"
yansi = "0.5.0"
# image formats
[features]
default = ["jpeg", "png", "tiff", "gif", "webp", "webp-encoder"]
bmp = []
gif = []
hdr = []
ico = []
jpeg = []
png = []
pnm = []
tga = []
dds = []
tiff = []
webp = []
webp-encoder = []
farbfeld = []
avif-encoder = []