mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Audit and reduce unstable usage in profile
Reasons behind existing unstable features: collections: - `[T].tail()` (naming) - Could use iterators instead
This commit is contained in:
parent
c73eaefc47
commit
89d4ee88f4
2 changed files with 1 additions and 2 deletions
|
@ -9,7 +9,6 @@
|
|||
|
||||
#[macro_use] extern crate log;
|
||||
|
||||
extern crate collections;
|
||||
extern crate libc;
|
||||
#[macro_use]
|
||||
extern crate profile_traits;
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
|
||||
//! Timing functions.
|
||||
|
||||
use collections::BTreeMap;
|
||||
use profile_traits::time::{ProfilerCategory, ProfilerChan, ProfilerMsg, TimerMetadata};
|
||||
use std::borrow::ToOwned;
|
||||
use std::cmp::Ordering;
|
||||
use std::collections::BTreeMap;
|
||||
use std::f64;
|
||||
use std::sync::mpsc::{channel, Receiver};
|
||||
use std::thread::sleep_ms;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue