mod.rs (1037B)
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(crate) mod base64; 15 pub(crate) mod cbor_types; 16 #[allow(dead_code)] 17 pub(crate) mod hash_utils; 18 pub(crate) mod merkle; 19 pub(crate) mod mime; 20 #[allow(dead_code)] // for wasm build 21 pub(crate) mod patch; 22 #[cfg(feature = "add_thumbnails")] 23 pub(crate) mod thumbnail; 24 pub(crate) mod time_it; 25 #[allow(dead_code)] // for wasm builds 26 pub(crate) mod xmp_inmemory_utils; 27 // shared unit testing utilities 28 #[cfg(test)] 29 #[allow(dead_code)] // for wasm build 30 pub mod test;