diff --git a/crates/fj-viewer/src/graphics/mod.rs b/crates/fj-viewer/src/graphics/mod.rs index 0785f08de..e348f90f6 100644 --- a/crates/fj-viewer/src/graphics/mod.rs +++ b/crates/fj-viewer/src/graphics/mod.rs @@ -17,7 +17,7 @@ mod vertices; pub use self::{ device::DeviceError, draw_config::DrawConfig, - renderer::{DrawError, Renderer, RendererInitError}, + renderer::{Renderer, RendererInitError}, }; pub const DEPTH_FORMAT: wgpu::TextureFormat = wgpu::TextureFormat::Depth32Float; diff --git a/justfile b/justfile index 7b0f2fb0f..d0499aa67 100644 --- a/justfile +++ b/justfile @@ -19,6 +19,6 @@ test: # probably be considered a bug in this file. ci: test cargo fmt --check - cargo clippy --all-features -- -D warnings + cargo clippy --workspace --all-features -- -D warnings cargo doc --no-deps --document-private-items --all-features --workspace cargo run --package cross-compiler diff --git a/rust-toolchain.toml b/rust-toolchain.toml index ec2277f46..f31292d9b 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.74.1" +channel = "1.75.0" components = ["rustfmt", "clippy"] targets = [ "aarch64-apple-ios", diff --git a/tools/release-operator/src/registry.rs b/tools/release-operator/src/registry.rs index a4e3c6606..4df173355 100644 --- a/tools/release-operator/src/registry.rs +++ b/tools/release-operator/src/registry.rs @@ -193,7 +193,7 @@ impl Crate { serde_json::from_str::(resp.text()?.as_str()) .context("deserializing crates.io response")?; - Ok(versions.versions.get(0).unwrap().version.to_owned()) + Ok(versions.versions.first().unwrap().version.to_owned()) } fn determine_state(&self) -> anyhow::Result {