about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/castore/src/blobservice/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/castore/src/blobservice/mod.rs b/tvix/castore/src/blobservice/mod.rs
index eeb8b9649c1a..7685ff40d60f 100644
--- a/tvix/castore/src/blobservice/mod.rs
+++ b/tvix/castore/src/blobservice/mod.rs
@@ -65,7 +65,7 @@ pub trait BlobService: Send + Sync {
 /// A [tokio::io::AsyncWrite] that the user needs to close() afterwards for persist.
 /// On success, it returns the digest of the written blob.
 #[async_trait]
-pub trait BlobWriter: tokio::io::AsyncWrite + Send + Sync + Unpin + 'static {
+pub trait BlobWriter: tokio::io::AsyncWrite + Send + Unpin {
     /// Signal there's no more data to be written, and return the digest of the
     /// contents written.
     ///