Sha256: 87fc968b87a2a5e6f17c67db27d42ee83282af9f97c623777609a7403b79ea84
Contents?: true
Size: 485 Bytes
Versions: 41
Compression:
Stored size: 485 Bytes
Contents
//! `fs-set-times` provides functions to set timestamps on files, directories, //! and other filesystem objects. //! //! On Windows, modifying a file's timestamp requires write access to the file. #![deny(missing_docs)] #![cfg_attr(target_os = "wasi", feature(wasi_ext))] #![cfg_attr(not(windows), forbid(unsafe_code))] mod set_times; mod system_time_spec; pub use set_times::{set_atime, set_mtime, set_symlink_times, set_times, SetTimes}; pub use system_time_spec::SystemTimeSpec;
Version data entries
41 entries across 39 versions & 1 rubygems