Skip to content
Merged
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
directory: [alloc, profiling, ddcommon-ffi]
directory: [alloc, profiling, ddcommon-ffi, trace-utils]
env:
CARGO_TERM_COLOR: always
steps:
Expand Down
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions trace-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ testcontainers = { version = "0.17.0", optional = true }
cargo_metadata = { version = "0.18.1", optional = true }

[dev-dependencies]
bolero = "0.10.1"
bolero-generator = "0.10.2"
criterion = "0.5.1"
httpmock = { version = "0.7.0"}
serde_json = "1.0"
Expand Down
1 change: 1 addition & 0 deletions trace-utils/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// SPDX-License-Identifier: Apache-2.0

pub mod config_utils;
pub mod msgpack_decoder;
pub mod send_data;
pub mod stats_utils;
#[cfg(any(test, feature = "test-utils"))]
Expand Down
4 changes: 4 additions & 0 deletions trace-utils/src/msgpack_decoder/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Copyright 2024-Present Datadog, Inc. https://www.datadoghq.com/
// SPDX-License-Identifier: Apache-2.0

pub mod v04;
Loading