about summary refs log tree commit diff
path: root/tvix/castore/src/blobservice
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-03-01T16·44+0200
committerclbot <clbot@tvl.fyi>2024-03-02T05·56+0000
commit982459d3438c478aa208bc61a0de1fe34a8d05a0 (patch)
tree00af6c2fcf13ed38e2866df975a692a57d0438ac /tvix/castore/src/blobservice
parente0ffb4d47a9fb52c8ea3b0d8b1d002606b0bc4ee (diff)
fix(tvix/castore/blobwriter): don't require Sync + 'static r/7626
There's no reason for these two.

Change-Id: Ie6f238bbb0b17971c9877b11b61ea7ebca573c13
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11075
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/castore/src/blobservice')
-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 eeb8b9649c..7685ff40d6 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.
     ///