diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2023-09-08 14:11:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 12:11:31 +0000 |
commit | 711dbbd4afe161fc334db198357d814e99e5ac57 (patch) | |
tree | 5c0e3a6a18dd26c9e39a47a790c6ec36f0ff8d4d /components/metrics/lib.rs | |
parent | a0cff6a0858e675b805a71238ab96fa295a271f8 (diff) | |
download | servo-711dbbd4afe161fc334db198357d814e99e5ac57.tar.gz servo-711dbbd4afe161fc334db198357d814e99e5ac57.zip |
remove `extern crate` (#30311)
* remove extern crate
* Update components/script_plugins/lib.rs
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
---------
Co-authored-by: Martin Robinson <mrobinson@igalia.com>
Diffstat (limited to 'components/metrics/lib.rs')
-rw-r--r-- | components/metrics/lib.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/components/metrics/lib.rs b/components/metrics/lib.rs index ad6ef52e3ca..2d6d1186b83 100644 --- a/components/metrics/lib.rs +++ b/components/metrics/lib.rs @@ -2,13 +2,10 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ -#[macro_use] -extern crate log; -#[macro_use] -extern crate malloc_size_of_derive; - use gfx_traits::Epoch; use ipc_channel::ipc::IpcSender; +use log::warn; +use malloc_size_of_derive::MallocSizeOf; use msg::constellation_msg::PipelineId; use profile_traits::time::TimerMetadata; use profile_traits::time::{send_profile_data, ProfilerCategory, ProfilerChan}; |