Skip to content

Commit

Permalink
Merge pull request #148 from aruediger/itertools
Browse files Browse the repository at this point in the history
Progressing #148
  • Loading branch information
ajrcarey authored Jun 12, 2024
2 parents 423c249 + 49a36cf commit edd9467
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ bytes = "1"
bytemuck = "1"
chrono = "0"
image = { version = ">= 0.24.0", optional = true } # DynamicImage trait definitions changed between 0.23.14 and 0.24.0; we use trait from version 0.24.0 and later.
iter_tools = "0"
itertools = "0.13"
log = "0"
maybe-owned = "0"
once_cell = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/paragraph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use crate::page_object_private::internal::PdfPageObjectPrivate;
use crate::page_object_text::PdfPageTextObject;
use crate::page_objects_common::PdfPageObjectsCommon;
use crate::points::PdfPoints;
use iter_tools::Itertools;
use itertools::Itertools;
use maybe_owned::MaybeOwned;
use std::cmp::Ordering;

Expand Down
2 changes: 1 addition & 1 deletion src/rect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::bindings::PdfiumLibraryBindings;
use crate::error::{PdfiumError, PdfiumInternalError};
use crate::matrix::PdfMatrix;
use crate::points::PdfPoints;
use iter_tools::{max, min};
use itertools::{max, min};
use std::fmt::{Display, Formatter};
use std::hash::{Hash, Hasher};

Expand Down

0 comments on commit edd9467

Please sign in to comment.