Skip to content

Commit 02f61b8

Browse files
libdatadog update to 64ad2ed5
Automated update by CI pipeline https://gitlab.ddbuild.io/DataDog/apm-reliability/dd-trace-php/-/pipelines/135643576 Full CI result: ❌ 5 job(s) failed
1 parent 3b1267d commit 02f61b8

6 files changed

Lines changed: 59 additions & 59 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ libdd-common = { path = "libdatadog/libdd-common", features = ["cgroup_testing"]
5151
libdd-common-ffi = { path = "libdatadog/libdd-common-ffi", default-features = false }
5252
libdd-telemetry = { path = "libdatadog/libdd-telemetry" }
5353
libdd-telemetry-ffi = { path = "libdatadog/libdd-telemetry-ffi", default-features = false }
54-
datadog-live-debugger = { path = "libdatadog/datadog-live-debugger" }
55-
datadog-live-debugger-ffi = { path = "libdatadog/datadog-live-debugger-ffi", default-features = false }
54+
libdd-live-debugger = { path = "libdatadog/libdd-live-debugger" }
55+
libdd-live-debugger-ffi = { path = "libdatadog/libdd-live-debugger-ffi", default-features = false }
5656
libdd-ipc = { path = "libdatadog/libdd-ipc" }
5757
datadog-ffe = { package = "libdd-ffe", path = "libdatadog/libdd-ffe" }
5858
libdd-remote-config = { path = "libdatadog/libdd-remote-config" }

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,8 +456,8 @@ generate_cbindgen: cbindgen_binary # Regenerate components-rs/datadog.h componen
456456
$(command rustup && echo run nightly --) cbindgen --crate libdd-common-ffi \
457457
--config libdd-common-ffi/cbindgen.toml \
458458
--output $(PROJECT_ROOT)/components-rs/common.h; \
459-
$(command rustup && echo run nightly --) cbindgen --crate datadog-live-debugger-ffi \
460-
--config datadog-live-debugger-ffi/cbindgen.toml \
459+
$(command rustup && echo run nightly --) cbindgen --crate libdd-live-debugger-ffi \
460+
--config libdd-live-debugger-ffi/cbindgen.toml \
461461
--output $(PROJECT_ROOT)/components-rs/live-debugger.h; \
462462
$(command rustup && echo run nightly --) cbindgen --crate libdd-telemetry-ffi \
463463
--config libdd-telemetry-ffi/cbindgen.toml \

cbindgen.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ include = [
4646
"datadog-crashtracker-ffi",
4747
"datadog-sidecar",
4848
"libdd-ipc",
49-
"datadog-live-debugger",
50-
"datadog-live-debugger-ffi",
49+
"libdd-live-debugger",
50+
"libdd-live-debugger-ffi",
5151
"libdd-remote-config",
5252
"uuid"
5353
]

components-rs/remote_config.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
use crate::bytes::{dangling_zend_string, OwnedZendString, ZendString};
22
use crate::sidecar::MaybeShmLimiter;
33
use datadog_ffe::rules_based::{Configuration, UniversalFlagConfig};
4-
use datadog_live_debugger::debugger_defs::{DebuggerData, DebuggerPayload};
5-
use datadog_live_debugger::{FilterList, LiveDebuggingData, ServiceConfiguration};
6-
use datadog_live_debugger_ffi::data::Probe;
7-
use datadog_live_debugger_ffi::evaluator::{ddog_register_expr_evaluator, Evaluator};
8-
use datadog_live_debugger_ffi::send_data::{
9-
ddog_debugger_diagnostics_create_unboxed, ddog_snapshot_redacted_type,
10-
};
114
use datadog_sidecar::service::blocking::SidecarTransport;
125
use datadog_sidecar::service::{InstanceId, QueueId};
136
use datadog_sidecar::shm_remote_config::{RemoteConfigManager, RemoteConfigUpdate};
@@ -17,6 +10,13 @@ use libdd_common::tag::Tag;
1710
use libdd_common::Endpoint;
1811
use libdd_common_ffi::slice::AsBytes;
1912
use libdd_common_ffi::{CharSlice, MaybeError};
13+
use libdd_live_debugger::debugger_defs::{DebuggerData, DebuggerPayload};
14+
use libdd_live_debugger::{FilterList, LiveDebuggingData, ServiceConfiguration};
15+
use libdd_live_debugger_ffi::data::Probe;
16+
use libdd_live_debugger_ffi::evaluator::{ddog_register_expr_evaluator, Evaluator};
17+
use libdd_live_debugger_ffi::send_data::{
18+
ddog_debugger_diagnostics_create_unboxed, ddog_snapshot_redacted_type,
19+
};
2020
use libdd_remote_config::config::dynamic::{
2121
Configs, DynamicConfigFile, TracingSamplingRuleProvenance,
2222
};

libdatadog

Submodule libdatadog updated 39 files

0 commit comments

Comments
 (0)