chore(3p/sources): bump channels & overlays (2024-12-31)
Last one of the year! С наступающим)
Fixes:
* users/wpcarro: remove use-package from emacs packages (it has been built-in
for a while now)
* users/sterni: the same thing
* users/aspen: remove `coz`, forwardport `gdmap` from stable
* users/flokli: dropped corneish_zen firmware from CI
This firmware depends on a non-reproducible FOD which, when updated, causes
build failures. We have worked around this repeatedly, but it needs to be
fixed properly.
* tvix: regenerate Go protobufs
* tvix: address new clippy lints
* tvix/{castore,store,build}-go: update grpc/protobuf libraries
* tvix/eval: formatting fixes
* 3p/overlays/tvl: work around GCC 14 -Werrors
Change-Id: Ice5948ca7780192fb7d2abc6a48971fb875f03c9
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12933
Reviewed-by: tazjin <tazjin@tvl.su>
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: aspen <root@gws.fyi>
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
parent
bd73dff0bf
commit
54f72afcda
44 changed files with 516 additions and 578 deletions
|
|
@ -75,7 +75,7 @@ pub struct FileReader<'a, 'r> {
|
|||
inner: BytesReader<&'a mut Reader<'r>, PadPar>,
|
||||
}
|
||||
|
||||
impl<'a, 'r> FileReader<'a, 'r> {
|
||||
impl FileReader<'_, '_> {
|
||||
pub fn is_empty(&self) -> bool {
|
||||
self.len() == 0
|
||||
}
|
||||
|
|
@ -85,7 +85,7 @@ impl<'a, 'r> FileReader<'a, 'r> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a, 'r> AsyncRead for FileReader<'a, 'r> {
|
||||
impl AsyncRead for FileReader<'_, '_> {
|
||||
fn poll_read(
|
||||
self: Pin<&mut Self>,
|
||||
cx: &mut task::Context,
|
||||
|
|
@ -95,7 +95,7 @@ impl<'a, 'r> AsyncRead for FileReader<'a, 'r> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a, 'r> AsyncBufRead for FileReader<'a, 'r> {
|
||||
impl AsyncBufRead for FileReader<'_, '_> {
|
||||
fn poll_fill_buf(self: Pin<&mut Self>, cx: &mut task::Context) -> Poll<io::Result<&[u8]>> {
|
||||
Pin::new(&mut self.get_mut().inner).poll_fill_buf(cx)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -431,7 +431,7 @@ impl ArchiveReaderStatus<'_> {
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a, 'r> ArchiveReader<'a, 'r> {
|
||||
impl<'r> ArchiveReader<'_, 'r> {
|
||||
/// Create a new child reader from this one.
|
||||
/// In debug mode, this reader will panic if called before the new child is exhausted / calls `ready_parent`
|
||||
fn child(&mut self) -> ArchiveReader<'_, 'r> {
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ impl VerifyingKey {
|
|||
return false;
|
||||
}
|
||||
|
||||
return signature.verify(fingerprint.as_bytes(), &self.verifying_key);
|
||||
signature.verify(fingerprint.as_bytes(), &self.verifying_key)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -226,7 +226,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
impl<'a, 'b: 'a> FromStr for StorePath<String> {
|
||||
impl FromStr for StorePath<String> {
|
||||
type Err = Error;
|
||||
|
||||
/// Construct a [StorePath] by passing the `$digest-$name` string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue