1 2 3 4 5 6 7 8
use instant::SystemTime; pub fn now() -> u64 { SystemTime::now() .duration_since(SystemTime::UNIX_EPOCH) .unwrap() .as_secs() }