Skip to content

Commit

Permalink
chore: cargo upgrade --incompatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Walther committed Jun 9, 2024
1 parent 5f630ce commit 94a82f1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions clovers-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,22 @@ clovers = { path = "../clovers", features = [

# External
blue-noise-sampler = "0.1.0"
clap = { version = "4.5.4", features = ["std", "derive"] }
clap = { version = "4.5.6", features = ["std", "derive"] }
human_format = "1.1.0"
humantime = "2.1.0"
image = { version = "0.24.9", features = ["png"], default-features = false }
image = { version = "0.25.1", features = ["png"], default-features = false }
img-parts = "0.3.0"
indicatif = { version = "0.17.8", features = [
"rayon",
], default-features = false }
nalgebra = { version = "0.32.4" }
palette = { version = "0.7.5", features = ["serializing"] }
paste = { version = "1.0.14" }
nalgebra = { version = "0.32.5" }
palette = { version = "0.7.6", features = ["serializing"] }
paste = { version = "1.0.15" }
rand = { version = "0.8.5", features = ["small_rng"], default-features = false }
rayon = "1.10.0"
serde = { version = "1.0.197", features = ["derive"], default-features = false }
serde = { version = "1.0.203", features = ["derive"], default-features = false }
serde_json = { version = "1.0", features = ["alloc"], default-features = false }
time = { version = "0.3.34", default-features = false }
time = { version = "0.3.36", default-features = false }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["time"] }

Expand Down
4 changes: 2 additions & 2 deletions clovers-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// External imports
use clap::Parser;
use humantime::format_duration;
use image::{ImageBuffer, ImageOutputFormat, Rgb, RgbImage};
use image::{ImageBuffer, ImageFormat, Rgb, RgbImage};
use img_parts::png::{Png, PngChunk};
use std::fs::File;
use std::io::Cursor;
Expand Down Expand Up @@ -164,7 +164,7 @@ fn main() -> Result<(), Box<dyn Error>> {
info!("Writing an image file");

let mut bytes: Vec<u8> = Vec::new();
img.write_to(&mut Cursor::new(&mut bytes), ImageOutputFormat::Png)?;
img.write_to(&mut Cursor::new(&mut bytes), ImageFormat::Png)?;
let mut png = Png::from_bytes(bytes.into())?;

let comment = if normalmap {
Expand Down
10 changes: 5 additions & 5 deletions clovers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ std = []
traces = ["tracing"]

[dependencies]
enum_dispatch = "0.3.12"
gltf = { version = "1.4.0", optional = true }
nalgebra = { version = "0.32.4" }
palette = { version = "0.7.5", features = ["serializing"] }
enum_dispatch = "0.3.13"
gltf = { version = "1.4.1", optional = true }
nalgebra = { version = "0.32.5" }
palette = { version = "0.7.6", features = ["serializing"] }
rand = { version = "0.8.5", features = ["small_rng"], default-features = false }
rand_distr = { version = "0.4.3", features = ["std_math"] }
serde = { version = "1.0.197", features = [
serde = { version = "1.0.203", features = [
"derive",
], default-features = false, optional = true }
stl_io = { version = "0.7.0", optional = true }
Expand Down

0 comments on commit 94a82f1

Please sign in to comment.