From da9bc274f3a07a461b279b18c6b650b0a2808c39 Mon Sep 17 00:00:00 2001 From: Connor Brewster Date: Mon, 6 May 2024 10:53:52 -0500 Subject: refactor(tvix): remove usage of async-recursion Rust 1.77 supports async recursion as long as there is some form of indirection (ie. `Box::pin`). This removes the need to use the async-recursion crate. Change-Id: Ic9613ab7f32016f0103032a861edff92e2fb8b41 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11596 Reviewed-by: flokli Autosubmit: Connor Brewster Tested-by: BuildkiteCI --- tvix/store/Cargo.toml | 1 - 1 file changed, 1 deletion(-) (limited to 'tvix/store/Cargo.toml') diff --git a/tvix/store/Cargo.toml b/tvix/store/Cargo.toml index 7034a95f3808..f82cdef30077 100644 --- a/tvix/store/Cargo.toml +++ b/tvix/store/Cargo.toml @@ -40,7 +40,6 @@ tracing-subscriber = { version = "0.3.16", features = ["env-filter", "json"] } tvix-castore = { path = "../castore" } url = "2.4.0" walkdir = "2.4.0" -async-recursion = "1.0.5" reqwest = { version = "0.11.22", features = ["rustls-tls-native-roots", "stream"], default-features = false } [dependencies.tonic-reflection] -- cgit 1.4.1