diff options
author | Vincent Ambo <mail@tazj.in> | 2022-12-12T16·10+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-12-21T22·53+0000 |
commit | ec3e38c2d6f3eed87bb3f36060bd4dac09a9da75 (patch) | |
tree | d2eaee85ac84602b5129c189667ee1bd56282d87 /tvix/eval/src/io.rs | |
parent | 29790147b6f8c1fe763c25716f5a17a8c529ae5f (diff) |
chore(tvix/eval): gate tvix_eval::StdIO behind the `impure` feature r/5462
This shouldn't be available if we've built a "pure" crate. Change-Id: I7c85827ee212890252ff7e0b6242e2c52618cba5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7572 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix/eval/src/io.rs')
-rw-r--r-- | tvix/eval/src/io.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tvix/eval/src/io.rs b/tvix/eval/src/io.rs index cf9f6304305f..fd0680f3c2a5 100644 --- a/tvix/eval/src/io.rs +++ b/tvix/eval/src/io.rs @@ -27,8 +27,10 @@ pub trait EvalIO { /// Implementation of [`EvalIO`] that simply uses the equivalent /// standard library functions, i.e. does local file-IO. +#[cfg(feature = "impure")] pub struct StdIO; +#[cfg(feature = "impure")] impl EvalIO for StdIO { fn read_to_string(&self, path: PathBuf) -> Result<String, ErrorKind> { let path: PathBuf = path.into(); |