Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Keats committed Feb 14, 2022
1 parent 53fca74 commit 4bcbf2a
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 49 deletions.
99 changes: 54 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/imageproc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ regex = "1.0"
tera = "1"
image = "0.23"
rayon = "1"
webp = "0.1.1"
webp = "0.2"
serde = { version = "1", features = ["derive"] }
svg_metadata = "0.4.1"

Expand Down
2 changes: 1 addition & 1 deletion components/imageproc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ impl ImageOp {
img.write_to(&mut f, ImageOutputFormat::Jpeg(q))?;
}
Format::WebP(q) => {
let encoder = webp::Encoder::from_image(&img);
let encoder = webp::Encoder::from_image(&img)?;
let memory = match q {
Some(q) => encoder.encode(q as f32),
None => encoder.encode_lossless(),
Expand Down
2 changes: 1 addition & 1 deletion components/templates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ csv = "1"
serde = "1"
serde_json = "1"
serde_derive = "1"
sha2 = "0.9"
sha2 = "0.10"
url = "2"
nom-bibtex = "0.3"
num-format = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion components/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ serde = { version = "1.0", features = ["derive"] }
slug = "0.1"
percent-encoding = "2"
filetime = "0.2.12"
minify-html = "0.6"
minify-html = "0.8"

errors = { path = "../errors" }

Expand Down

0 comments on commit 4bcbf2a

Please sign in to comment.