Codebase list rust-stfu8 / fd227ed
RFS: image kpcyrd 4 years ago
6 changed file(s) with 28 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
5454 toml (update, introduces new feature)
5555 users (update)
5656 pretty_assertions (update)
57 image
5758
5859 Delayed/problematic::
5960
0 rust-image (0.21.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
0 rust-image (0.21.2-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
11
2 * Package image 0.21.1 from crates.io using debcargo 2.2.10
2 * Package image 0.21.2 from crates.io using debcargo 2.2.10
33
4 -- kpcyrd <git@rxv.cc> Sun, 5 May 2019 06:30:30 +0200
4 -- kpcyrd <git@rxv.cc> Sun, 14 Jul 2019 05:31:38 +0000
88 Calum
99 CensoredUsername <cens.username@gmail.com>
1010 fintelia <fintelia@gmail.com>
11 Source: https://github.com/PistonDevelopers/image.git
11 Source: https://github.com/image-rs/image/tree/version-0.21
1212
1313 Files: *
1414 Copyright:
88 Calum
99 CensoredUsername <cens.username@gmail.com>
1010 fintelia <fintelia@gmail.com>
11 Source: https://github.com/PistonDevelopers/image.git
11 Source: https://github.com/image-rs/image/tree/version-0.21
1212
1313 Files: *
1414 Copyright:
0 --- a/Cargo.toml
1 +++ b/Cargo.toml
2 @@ -60,7 +60,7 @@
3 optional = true
4
5 [dependencies.tiff]
6 -version = "0.2.0"
7 +version = "0.3.0"
8 optional = true
9 [dev-dependencies.glob]
10 version = "0.2.10"
11 --- a/src/tiff.rs
12 +++ b/src/tiff.rs
13 @@ -46,6 +46,7 @@
14 tiff::TiffError::IoError(err) => ImageError::IoError(err),
15 tiff::TiffError::FormatError(desc) => ImageError::FormatError(desc.to_string()),
16 tiff::TiffError::UnsupportedError(desc) => ImageError::UnsupportedError(desc.to_string()),
17 + tiff::TiffError::LimitsExceeded => ImageError::InsufficientMemory,
18 }
19 }
20 }