Codebase list rust-libslirp / e8ceac8
RFS image kpcyrd 4 years ago
5 changed file(s) with 11 addition(s) and 26 deletion(s). Raw diff Collapse all Expand all
(New empty file)
0 rust-image (0.21.2-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
0 rust-image (0.22.1-1) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
11
2 * Package image 0.21.2 from crates.io using debcargo 2.2.10
2 * Package image 0.22.1 from crates.io using debcargo 2.4.0
33
4 -- kpcyrd <git@rxv.cc> Sun, 14 Jul 2019 05:31:38 +0000
4 -- kpcyrd <git@rxv.cc> Fri, 9 Aug 2019 19:48:30 +0200
88 Calum
99 CensoredUsername <cens.username@gmail.com>
1010 fintelia <fintelia@gmail.com>
11 Source: https://github.com/image-rs/image/tree/version-0.21
11 Source: https://github.com/image-rs/image.git
1212
1313 Files: *
1414 Copyright:
3636
3737 Files: ./src/jpeg/transform.rs
3838 Copyright: 1991-2014, Thomas G. Lane, Guido Vollbeding.
39 License: UNKNOWN-LICENSE; FIXME (overlay)
40 Comment:
41 FIXME (overlay): These notices are extracted from files. Please review them
42 before uploading to the archive.
43
44 Files: ./src/lib.rs
45 Copyright: 2018 Guillaume Gomez
3946 License: UNKNOWN-LICENSE; FIXME (overlay)
4047 Comment:
4148 FIXME (overlay): These notices are extracted from files. Please review them
+0
-1
src/image/debian/patches/series less more
0 tiff-0.3.patch
+0
-21
src/image/debian/patches/tiff-0.3.patch less more
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 }