fix(tvix/eval/vm/generators): allow unused rq_{path_exists,read_dir}
These VM requests are only emitted by code gated behind the impure feature. To prevent warning from popping up when building without default features, allow these to be unused if `impure` is not enabled. Change-Id: Id871a5215e9a0f09aa78edecdd111369ee7ffe34 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11722 Reviewed-by: Connor Brewster <cbrewster@hey.com> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
parent
e8324073eb
commit
543c103903
1 changed files with 2 additions and 0 deletions
|
@ -745,6 +745,7 @@ pub async fn request_open_file(co: &GenCo, path: PathBuf) -> Box<dyn std::io::Re
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg_attr(not(feature = "impure"), allow(unused))]
|
||||
pub(crate) async fn request_path_exists(co: &GenCo, path: PathBuf) -> Value {
|
||||
match co.yield_(VMRequest::PathExists(path)).await {
|
||||
VMResponse::Value(value) => value,
|
||||
|
@ -755,6 +756,7 @@ pub(crate) async fn request_path_exists(co: &GenCo, path: PathBuf) -> Value {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg_attr(not(feature = "impure"), allow(unused))]
|
||||
pub(crate) async fn request_read_dir(co: &GenCo, path: PathBuf) -> Vec<(bytes::Bytes, FileType)> {
|
||||
match co.yield_(VMRequest::ReadDir(path)).await {
|
||||
VMResponse::Directory(dir) => dir,
|
||||
|
|
Loading…
Reference in a new issue