diff --git a/crates/wasi-common/src/old/snapshot_0/hostcalls_impl/fs.rs b/crates/wasi-common/src/old/snapshot_0/hostcalls_impl/fs.rs index 1d373c6a96d..002e9d6749e 100644 --- a/crates/wasi-common/src/old/snapshot_0/hostcalls_impl/fs.rs +++ b/crates/wasi-common/src/old/snapshot_0/hostcalls_impl/fs.rs @@ -4,11 +4,11 @@ use crate::old::snapshot_0::ctx::WasiCtx; use crate::old::snapshot_0::fdentry::{Descriptor, FdEntry}; use crate::old::snapshot_0::helpers::*; use crate::old::snapshot_0::memory::*; -use crate::old::snapshot_0::sandboxed_tty_writer::SandboxedTTYWriter; use crate::old::snapshot_0::sys::fdentry_impl::determine_type_rights; use crate::old::snapshot_0::sys::hostcalls_impl::fs_helpers::path_open_rights; use crate::old::snapshot_0::sys::{host_impl, hostcalls_impl}; use crate::old::snapshot_0::{helpers, host, wasi, wasi32, Error, Result}; +use crate::sandboxed_tty_writer::SandboxedTTYWriter; use filetime::{set_file_handle_times, FileTime}; use log::trace; use std::fs::File; diff --git a/crates/wasi-common/src/old/snapshot_0/mod.rs b/crates/wasi-common/src/old/snapshot_0/mod.rs index 3644ca05d50..5d4e7f01b0f 100644 --- a/crates/wasi-common/src/old/snapshot_0/mod.rs +++ b/crates/wasi-common/src/old/snapshot_0/mod.rs @@ -5,7 +5,6 @@ mod helpers; mod host; pub mod hostcalls; mod hostcalls_impl; -mod sandboxed_tty_writer; mod memory; mod sys; pub mod wasi;