Open
Description
Since the file IO is tokio::fs
based we'd like to be able to call tokio::fs::remove_file to delete the file rather than relying on std::fs::remove_file
. In current Rust, drop
is purely synchronous, which prevents us from calling this method.