diff options
author | Florian Klink <flokli@flokli.de> | 2023-09-22T10·03+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-09-22T12·51+0000 |
commit | 80a02f96ce10487a8886ebc00b38cb72b671c0ca (patch) | |
tree | a78bad33f4b997699c177f8e1bdd39f8cfae46e0 /tvix/castore | |
parent | 32f41458c0a0f62bf906021ef096c465ccc45581 (diff) |
chore(tvix/castore): remove dependency on anyhow r/6630
We don't use this here, except in a test, where we don't really use it either. Change-Id: Ia6c45fccf663fe328942b1e1a2cd1c3a1b7f9ae5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9376 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Connor Brewster <cbrewster@hey.com> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/castore')
-rw-r--r-- | tvix/castore/Cargo.toml | 1 | ||||
-rw-r--r-- | tvix/castore/src/directoryservice/grpc.rs | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/tvix/castore/Cargo.toml b/tvix/castore/Cargo.toml index 8bef5bb147bc..5ad61d08b188 100644 --- a/tvix/castore/Cargo.toml +++ b/tvix/castore/Cargo.toml @@ -4,7 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -anyhow = "1.0.68" async-stream = "0.3.5" blake3 = { version = "1.3.1", features = ["rayon", "std"] } bytes = "1.4.0" diff --git a/tvix/castore/src/directoryservice/grpc.rs b/tvix/castore/src/directoryservice/grpc.rs index 0f0305341265..febab2752a1f 100644 --- a/tvix/castore/src/directoryservice/grpc.rs +++ b/tvix/castore/src/directoryservice/grpc.rs @@ -355,7 +355,7 @@ mod tests { }; #[test] - fn test() -> anyhow::Result<()> { + fn test() { let tmpdir = TempDir::new().unwrap(); let socket_path = tmpdir.path().join("socket"); @@ -535,7 +535,5 @@ mod tests { .expect_err("must fail"); } }); - - Ok(()) } } |