diff --git a/Cargo.toml b/Cargo.toml index 34155f6..d185028 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nom-exif" -version = "1.0.1" +version = "1.1.1" edition = "2021" license-file = "LICENSE" description = "Exif/metadata parsing library written in pure Rust, both JPEG/HEIF/HEIC images and MOV/MP4 videos are supported." diff --git a/src/lib.rs b/src/lib.rs index cd02f5d..d739bb0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ pub use heif::parse_heif_exif; pub use jpeg::parse_jpeg_exif; pub use mov::{parse_metadata, parse_mov_metadata}; -pub use exif::ExifTag; +pub use exif::{Exif, ExifTag}; pub use values::EntryValue; pub use error::Error;