diff --git a/crates/uv-resolver/tests/resolver.rs b/crates/uv-resolver/tests/resolver.rs index 77e0fc733..fea1e694b 100644 --- a/crates/uv-resolver/tests/resolver.rs +++ b/crates/uv-resolver/tests/resolver.rs @@ -77,25 +77,21 @@ impl BuildContext for DummyContext { &self.index_locations } - async fn resolve<'a>(&'a self, _requirements: &'a [Requirement]) -> Result { + async fn resolve<'a>(&'a self, _: &'a [Requirement]) -> Result { panic!("The test should not need to build source distributions") } - async fn install<'a>( - &'a self, - _resolution: &'a Resolution, - _venv: &'a Virtualenv, - ) -> Result<()> { + async fn install<'a>(&'a self, _: &'a Resolution, _: &'a Virtualenv) -> Result<()> { panic!("The test should not need to build source distributions") } async fn setup_build<'a>( &'a self, - _source: &'a Path, - _subdirectory: Option<&'a Path>, - _package_id: &'a str, - _dist: Option<&'a SourceDist>, - _build_kind: BuildKind, + _: &'a Path, + _: Option<&'a Path>, + _: &'a str, + _: Option<&'a SourceDist>, + _: BuildKind, ) -> Result { Ok(DummyBuilder) } @@ -108,7 +104,7 @@ impl SourceBuildTrait for DummyBuilder { panic!("The test should not need to build source distributions") } - async fn wheel<'a>(&'a self, _wheel_dir: &'a Path) -> Result { + async fn wheel<'a>(&'a self, _: &'a Path) -> Result { panic!("The test should not need to build source distributions") } } diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 6d833ff50..83a52c383 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "1.75" +channel = "1.76"