Source: rust-rawloader
Section: rust
Priority: optional
Build-Depends: debhelper (>= 12),
 dh-cargo (>= 25),
 cargo:native,
 rustc:native,
 libstd-rust-dev,
 librust-byteorder-1+default-dev,
 librust-enumn-0.1+default-dev,
 librust-glob-0.3+default-dev,
 librust-lazy-static-1+default-dev,
 librust-rayon-1+default-dev,
 librust-rustc-version-0.4+default-dev,
 librust-toml-0.5+default-dev
Maintainer: Debian Rust Maintainers <pkg-rust-maintainers@alioth-lists.debian.net>
Uploaders:
 Fab Stz <fabstz-it@yahoo.fr>
Standards-Version: 4.6.1
Vcs-Git: https://salsa.debian.org/rust-team/debcargo-conf.git [src/rawloader]
Vcs-Browser: https://salsa.debian.org/rust-team/debcargo-conf/tree/master/src/rawloader
X-Cargo-Crate: rawloader
Rules-Requires-Root: no

Package: librust-rawloader-dev
Architecture: any
Multi-Arch: same
Depends:
 ${misc:Depends},
 librust-byteorder-1+default-dev,
 librust-enumn-0.1+default-dev,
 librust-glob-0.3+default-dev,
 librust-lazy-static-1+default-dev,
 librust-rayon-1+default-dev,
 librust-rustc-version-0.4+default-dev,
 librust-toml-0.5+default-dev
Provides:
 librust-rawloader+default-dev (= ${binary:Version}),
 librust-rawloader-0-dev (= ${binary:Version}),
 librust-rawloader-0+default-dev (= ${binary:Version}),
 librust-rawloader-0.37-dev (= ${binary:Version}),
 librust-rawloader-0.37+default-dev (= ${binary:Version}),
 librust-rawloader-0.37.1-dev (= ${binary:Version}),
 librust-rawloader-0.37.1+default-dev (= ${binary:Version})
Description: Library to extract the data from camera raw formats - Rust source code
 This package contains the source for the Rust rawloader crate, packaged by
 debcargo for use with cargo and dh-cargo.

Package: rawloader
Architecture: any
Multi-Arch: allowed
Section: graphics
Depends:
 ${misc:Depends},
 ${shlibs:Depends},
 ${cargo:Depends}
Recommends:
 ${cargo:Recommends}
Suggests:
 ${cargo:Suggests}
Provides:
 ${cargo:Provides}
Built-Using: ${cargo:Built-Using}
XB-X-Cargo-Built-Using: ${cargo:X-Cargo-Built-Using}
Description: Library to extract the data from camera raw formats
 This is a rust library to extract the raw data and some metadata from digital
 camera images. Given an image in a supported format and camera you will be able
 to get everything needed to process the image:
 .
   - Identification of the camera that produced the image (both the EXIF name
 and a cleaned up name)
   - The raw pixels themselves, exactly as encoded by the camera
   - The number of pixels to crop on the top, right, bottom, left of the image
 to only use the actual image area
   - The black and white points of each of the color channels
   - The multipliers to apply to the color channels for the white balance
   - A conversion matrix between the camera color space and XYZ
   - The description of the bayer pattern itself so you'll know which pixels are
 which color
