c2pa-rs

A fork of https://github.com/contentauth/c2pa-rs/
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/c2pa-rs.git
Log | Files | Refs | README

mod.rs (797B)


      1 // Copyright 2022 Adobe. All rights reserved.
      2 // This file is licensed to you under the Apache License,
      3 // Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0)
      4 // or the MIT license (http://opensource.org/licenses/MIT),
      5 // at your option.
      6 
      7 // Unless required by applicable law or agreed to in writing,
      8 // this software is distributed on an "AS IS" BASIS, WITHOUT
      9 // WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or
     10 // implied. See the LICENSE-MIT and LICENSE-APACHE files for the
     11 // specific language governing permissions and limitations under
     12 // each license.
     13 
     14 pub mod bmff_io;
     15 pub mod c2pa_io;
     16 pub mod jpeg_io;
     17 pub mod mp3_io;
     18 pub mod png_io;
     19 pub mod riff_io;
     20 pub mod svg_io;
     21 pub mod tiff_io;
     22 
     23 #[cfg(feature = "pdf")]
     24 pub(crate) mod pdf;
     25 #[cfg(feature = "pdf")]
     26 pub mod pdf_io;