diff options
Diffstat (limited to 'tvix/eval/src/io.rs')
-rw-r--r-- | tvix/eval/src/io.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tvix/eval/src/io.rs b/tvix/eval/src/io.rs index ccbc7dfdbcb0..6589c0dc5cae 100644 --- a/tvix/eval/src/io.rs +++ b/tvix/eval/src/io.rs @@ -48,13 +48,13 @@ pub trait EvalIO { /// * `builtins.pathExists :: path -> bool` fn path_exists(&self, path: &Path) -> io::Result<bool>; - /// Read the file at the specified path to a string. + /// Read the file at the specified path to a Vec<u8>. /// /// This is used for the following language evaluation cases: /// /// * `builtins.readFile :: path -> string` /// * `builtins.import :: path -> any` - fn read_to_string(&self, path: &Path) -> io::Result<String>; + fn read_to_end(&self, path: &Path) -> io::Result<Vec<u8>>; /// Read the directory at the specified path and return the names /// of its entries associated with their [`FileType`]. @@ -99,8 +99,8 @@ impl EvalIO for StdIO { path.try_exists() } - fn read_to_string(&self, path: &Path) -> io::Result<String> { - std::fs::read_to_string(path) + fn read_to_end(&self, path: &Path) -> io::Result<Vec<u8>> { + std::fs::read(path) } fn read_dir(&self, path: &Path) -> io::Result<Vec<(bytes::Bytes, FileType)>> { @@ -145,7 +145,7 @@ impl EvalIO for DummyIO { )) } - fn read_to_string(&self, _: &Path) -> io::Result<String> { + fn read_to_end(&self, _: &Path) -> io::Result<Vec<u8>> { Err(io::Error::new( io::ErrorKind::Unsupported, "I/O methods are not implemented in DummyIO", |