Skip to content

Commit 3d70e68

Browse files
committed
chore: update lock/fmt
1 parent c34b448 commit 3d70e68

3 files changed

Lines changed: 214 additions & 13 deletions

File tree

Cargo.lock

Lines changed: 210 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

profiling/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ use core::fmt::{Display, Formatter};
1111
use core::mem::transmute;
1212
use core::ptr;
1313
use core::str::FromStr;
14+
pub use http::Uri;
1415
use libc::{c_char, c_int};
1516
use libdd_common::tag::{parse_tags, Tag};
16-
pub use http::Uri;
1717
use log::{debug, error, warn, LevelFilter};
1818
use std::borrow::Cow;
1919
use std::ffi::CString;

profiling/src/profiling/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ use crate::bindings::ddog_php_prof_get_active_fiber_test as ddog_php_prof_get_ac
1919

2020
use crate::allocation::ALLOCATION_PROFILING_INTERVAL;
2121
use crate::bindings::{
22-
datadog_php_profiling_get_profiling_context, zend_execute_data, zai_str_from_zstr, datadog_php_profiling_get_process_tags_serialized
22+
datadog_php_profiling_get_process_tags_serialized, datadog_php_profiling_get_profiling_context,
23+
zai_str_from_zstr, zend_execute_data,
2324
};
2425
use crate::config::SystemSettings;
2526
use crate::exception::EXCEPTION_PROFILING_INTERVAL;
@@ -29,11 +30,11 @@ use core::mem::forget;
2930
use core::{ptr, str};
3031
use cpu_time::ThreadTime;
3132
use crossbeam_channel::{Receiver, Sender, TrySendError};
33+
use libdd_common::tag::Tag;
3234
use libdd_profiling::api::{
3335
Function, Label as ApiLabel, Location, Period, Sample, SampleType as ApiSampleType,
3436
UpscalingInfo, ValueType as ApiValueType,
3537
};
36-
use libdd_common::tag::Tag;
3738
use libdd_profiling::internal::Profile as InternalProfile;
3839
use log::{debug, info, trace, warn};
3940
use std::borrow::Cow;

0 commit comments

Comments
 (0)