8 lines
205 B
Rust
8 lines
205 B
Rust
|
|
//! 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};
|