Add SystemTime to bevy_utils (#11054)

# Objective

https://github.com/bevyengine/bevy/pull/10702 has overridden the changes
that https://github.com/bevyengine/bevy/pull/10980 did.

## Solution

Re-add `SystemTime` to `bevy_utils`, along with a few other types.

---

## Changelog

- Rexported `SystemTime`, `SystemTimeError`, and `TryFromFloatSecsError`
from `bevy_utils`.
This commit is contained in:
Doonv 2023-12-21 16:05:27 +02:00 committed by GitHub
parent ced216f59a
commit 42f721382c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,7 @@ pub use hashbrown;
pub use petgraph;
pub use thiserror;
pub use tracing;
pub use web_time::{Duration, Instant};
pub use web_time::{Duration, Instant, SystemTime, SystemTimeError, TryFromFloatSecsError};
#[allow(missing_docs)]
pub mod nonmax {