1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "image"
16version = "0.23.9"
17authors = ["The image-rs Developers"]
18exclude = ["src/png/testdata/*", "examples/*", "tests/*"]
19description = "Imaging library written in Rust. Provides basic filters and decoders for the most common image formats."
20homepage = "https://github.com/image-rs/image"
21documentation = "https://docs.rs/image"
22readme = "README.md"
23categories = ["multimedia::images", "multimedia::encoding"]
24license = "MIT"
25repository = "https://github.com/image-rs/image"
26
27[lib]
28name = "image"
29path = "./src/lib.rs"
30
31[[bench]]
32name = "decode"
33path = "benches/decode.rs"
34harness = false
35
36[[bench]]
37name = "encode"
38path = "benches/encode.rs"
39harness = false
40[dependencies.bytemuck]
41version = "1"
42
43[dependencies.byteorder]
44version = "1.3.2"
45
46[dependencies.gif]
47version = "0.10.0"
48optional = true
49
50[dependencies.jpeg]
51version = "0.1.17"
52optional = true
53default-features = false
54package = "jpeg-decoder"
55
56[dependencies.num-iter]
57version = "0.1.32"
58
59[dependencies.num-rational]
60version = "0.3"
61default-features = false
62
63[dependencies.num-traits]
64version = "0.2.0"
65
66[dependencies.png]
67version = "0.16.5"
68optional = true
69
70[dependencies.scoped_threadpool]
71version = "0.1"
72optional = true
73
74[dependencies.tiff]
75version = "0.5.0"
76optional = true
77[dev-dependencies.crc32fast]
78version = "1.2.0"
79
80[dev-dependencies.criterion]
81version = "0.3"
82
83[dev-dependencies.glob]
84version = "0.3"
85
86[dev-dependencies.num-complex]
87version = "0.3"
88
89[dev-dependencies.quickcheck]
90version = "0.9"
91
92[features]
93benchmarks = []
94bmp = []
95dds = ["dxt"]
96default = ["gif", "jpeg", "ico", "png", "pnm", "tga", "tiff", "webp", "bmp", "hdr", "dxt", "dds", "farbfeld", "jpeg_rayon"]
97dxt = []
98farbfeld = []
99hdr = ["scoped_threadpool"]
100ico = ["bmp", "png"]
101jpeg_rayon = ["jpeg/rayon"]
102pnm = []
103tga = []
104webp = []
105