1 | [package]
|
2 | name = "imagesize"
|
3 | version = "0.13.0"
|
4 | authors = ["Maid Dog <maiddogsrl@gmail.com>" ]
|
5 | edition = "2021"
|
6 | description = "Quick probing of image dimensions without loading the entire file."
|
7 | documentation = "https://docs.rs/imagesize"
|
8 | repository = "https://github.com/Roughsketch/imagesize"
|
9 | readme = "README.md"
|
10 | keywords = ["dimensions" , "image" , "metadata" , "size" ]
|
11 | categories = ["multimedia" , "multimedia::images" ]
|
12 | license = "MIT"
|
13 | exclude = ["tests/*" ]
|
14 |
|
15 | [dependencies]
|
16 |
|
17 | [dev-dependencies]
|
18 | criterion = { version = "0.5" , features = ["html_reports" ] }
|
19 | walkdir = "2.3"
|
20 |
|
21 | [[bench]]
|
22 | name = "parse_benchmark"
|
23 | harness = false |