blob: 5f95ee86e087d375c12832640b2a73e232181549 (
plain) (
blame)
1
2
3
4
5
6
7
|
//! Keep track of time, both in native and web platforms!
#[cfg(target_arch = "wasm32")]
pub use instant::{Duration, Instant};
#[cfg(not(target_arch = "wasm32"))]
pub use std::time::{Duration, Instant};
|