Skip to content

Commit abe23bd

Browse files
committed
Address PR comments.
1 parent e376b9d commit abe23bd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

datadog-profiling-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ddcommon = { path = "../ddcommon" }
4444
ddcommon-ffi = { path = "../ddcommon-ffi", default-features = false, optional = true }
4545
ddtelemetry-ffi = { path = "../ddtelemetry-ffi", default-features = false, optional = true, features = ["expanded_builder_macros"] }
4646
datadog-log-ffi = { path = "../datadog-log-ffi", default-features = false, optional = true }
47-
ddsketch-ffi = { path = "../libdd-sketch-ffi/", default-features = false, optional = true, package = "libdd-sketch-ffi" }
47+
ddsketch-ffi = { path = "../libdd-sketch-ffi", default-features = false, optional = true, package = "libdd-sketch-ffi" }
4848
function_name = "0.3.0"
4949
futures = { version = "0.3", default-features = false }
5050
http-body-util = "0.1"

ddtelemetry/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ uuid = { version = "1.3", features = ["v4"] }
3232
hashbrown = "0.15"
3333

3434
ddcommon = { path = "../ddcommon", default-features = false }
35-
datadog-ddsketch = { path = "../libdd-sketch/", package = "libdd-sketch" }
35+
datadog-ddsketch = { path = "../libdd-sketch", package = "libdd-sketch" }
3636

3737
[target."cfg(unix)".dependencies]
3838
libc = "0.2.176"

libdd-sketch-ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ cbindgen = ["build_common/cbindgen", "ddcommon-ffi/cbindgen"]
2020
build_common = { path = "../build-common" }
2121

2222
[dependencies]
23-
datadog-ddsketch = { version = "1.0.0", path = "../libdd-sketch", package = "libdd-sketch" }
24-
ddcommon-ffi = { path = "../ddcommon-ffi/", default-features = false }
23+
libdd-sketch = { version = "1.0.0", path = "../libdd-sketch" }
24+
ddcommon-ffi = { path = "../ddcommon-ffi", default-features = false }
2525

2626
[dev-dependencies]

libdd-sketch-ffi/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#![cfg_attr(not(test), deny(clippy::todo))]
88
#![cfg_attr(not(test), deny(clippy::unimplemented))]
99

10-
use datadog_ddsketch::DDSketch;
10+
use libdd_sketch::DDSketch;
1111
use ddcommon_ffi as ffi;
1212
use ddcommon_ffi::{Error, Handle, ToInner, VoidResult};
1313
use std::mem::MaybeUninit;

0 commit comments

Comments
 (0)