Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ __fuzz__
#==============================================================================#
.DS_Store
.env
.envrc
.direnv
Cargo.lock # this is ignored so you don't update by accident, but is committed.
docker-sync.yml
libtest.so
Expand Down
1 change: 1 addition & 0 deletions libdd-data-pipeline-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ libdd-trace-utils = { path = "../libdd-trace-utils" }
libdd-data-pipeline = { path = "../libdd-data-pipeline" }
libdd-common-ffi = { path = "../libdd-common-ffi", default-features = false }
libdd-tinybytes = { path = "../libdd-tinybytes" }
libdd-trace-utils = { path = "../libdd-trace-utils", default-features = false }
tracing = { version = "0.1", default-features = false }
4 changes: 3 additions & 1 deletion libdd-data-pipeline-ffi/cbindgen.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ renaming_overrides_prefixing = true
"ExporterResponse" = "ddog_TraceExporterResponse"
"ExporterErrorCode" = "ddog_TraceExporterErrorCode"
"ExporterError" = "ddog_TraceExporterError"
"TracerSpan" = "ddog_TracerSpan"
"TracerTraceChunks" = "ddog_TracerTraceChunks"

[export.mangle]
rename_types = "PascalCase"
Expand All @@ -36,4 +38,4 @@ must_use = "DDOG_CHECK_RETURN"

[parse]
parse_deps = true
include = ["libdd-common", "libdd-common-ffi", "libdd-data-pipeline"]
include = ["libdd-common", "libdd-common-ffi", "libdd-data-pipeline", "libdd-trace-utils"]
1 change: 1 addition & 0 deletions libdd-data-pipeline-ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
mod error;
mod response;
mod trace_exporter;
mod tracer;
Loading
Loading