Use trice instead of std::time for performance measurement

This commit is contained in:
Tobie Morgan Hitchcock 2022-02-19 23:30:43 +00:00
parent 222e417c79
commit 12aea63928

View file

@ -12,7 +12,7 @@ use crate::sql::value::Value;
use futures::lock::Mutex;
use hyper::body::Sender;
use std::sync::Arc;
use std::time::Instant;
use trice::Instant;
pub struct Executor {
kvs: Store,