chore(tvix/store): switch back to fuse-backend-rs upstream

The fix mentioned in Cargo.toml did land in
https://github.com/cloud-hypervisor/fuse-backend-rs/pull/162.

Change-Id: I4451f910806f05400f7e0f83581ae786f170b9e2
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10375
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
This commit is contained in:
Florian Klink 2023-12-16 23:26:23 +02:00 committed by clbot
parent 97dee277b0
commit 43ab1543e2
5 changed files with 10 additions and 14 deletions

View file

@ -2460,14 +2460,9 @@ rec {
};
"fuse-backend-rs" = rec {
crateName = "fuse-backend-rs";
version = "0.10.5";
version = "0.11.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/griff/fuse-backend-rs";
rev = "70b835cada7e1f18e5cbb13f6c4b698ba203c820";
sha256 = "107iaw8zqsz888xh9nkq3vvki1c1rqqqg0mncdplradhhn7wp3kp";
};
sha256 = "0jyldvp0kvjk21j5vqga42lkksaf7zg8jkj3l6h2dv20kyl66nif";
authors = [
"Liu Bo <bo.liu@linux.alibaba.com>"
"Liu Jiang <gerry@linux.alibaba.com>"
@ -2553,11 +2548,15 @@ rec {
"async-trait" = [ "dep:async-trait" ];
"caps" = [ "dep:caps" ];
"core-foundation-sys" = [ "dep:core-foundation-sys" ];
"dbs-snapshot" = [ "dep:dbs-snapshot" ];
"default" = [ "fusedev" ];
"fusedev" = [ "vmm-sys-util" "caps" "core-foundation-sys" ];
"io-uring" = [ "dep:io-uring" ];
"persist" = [ "dbs-snapshot" "versionize" "versionize_derive" ];
"tokio" = [ "dep:tokio" ];
"tokio-uring" = [ "dep:tokio-uring" ];
"versionize" = [ "dep:versionize" ];
"versionize_derive" = [ "dep:versionize_derive" ];
"vhost" = [ "dep:vhost" ];
"vhost-user-fs" = [ "virtiofs" "vhost" "caps" ];
"virtio-queue" = [ "dep:virtio-queue" ];