std: move time implementations to sys (preparation)

This commit is contained in:
joboet 2026-01-15 14:27:10 +01:00
parent ebf13cca58
commit 814d902c50
No known key found for this signature in database
GPG key ID: 704E0149B0194B3C
2 changed files with 5 additions and 0 deletions

View file

@ -26,6 +26,7 @@ pub mod stdio;
pub mod sync;
pub mod thread;
pub mod thread_local;
pub mod time;
// FIXME(117276): remove this, move feature implementations into individual
// submodules.

View file

@ -0,0 +1,4 @@
cfg_select! {
}
pub use imp::{Instant, SystemTime, UNIX_EPOCH};