-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
71 lines (67 loc) · 1.09 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
63
64
65
66
67
68
69
70
71
[package]
name = "imagesize"
version = "0.13.0"
authors = ["Maid Dog <[email protected]>"]
edition = "2021"
description = "Quick probing of image dimensions without loading the entire file."
documentation = "https://docs.rs/imagesize"
repository = "https://github.com/Roughsketch/imagesize"
readme = "README.md"
keywords = ["dimensions", "image", "metadata", "size"]
categories = ["multimedia", "multimedia::images"]
license = "MIT"
exclude = ["tests/*"]
[dependencies]
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
walkdir = "2.3"
[[bench]]
name = "parse_benchmark"
harness = false
[features]
default = [
"aesprite",
"bmp",
"dds",
"exr",
"farbfeld",
"gif",
"hdr",
"ico",
"ilbm",
"jpeg",
"jxl",
"ktx2",
"mod",
"png",
"pnm",
"psd",
"qoi",
"tga",
"tiff",
"vtf",
"webp",
"heif",
]
aesprite = []
bmp = []
dds = []
exr = []
farbfeld = []
gif = []
hdr = []
ico = []
ilbm = []
jpeg = []
jxl = []
ktx2 = []
mod = []
png = []
pnm = []
psd = []
qoi = []
tga = []
tiff = []
vtf = []
webp = []
heif = []