Bootstrap DD3 Rust port workspace with host-first compatibility tests

This commit is contained in:
2026-02-21 00:59:03 +01:00
parent d3f9a2e62d
commit d0212f4e38
63 changed files with 3914 additions and 0 deletions

48
fuzz/Cargo.toml Normal file
View File

@@ -0,0 +1,48 @@
[package]
name = "dd3-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
dd3_protocol = { path = "../crates/dd3_protocol" }
dd3_contracts = { path = "../crates/dd3_contracts" }
[[bin]]
name = "frame_decode"
path = "fuzz_targets/frame_decode.rs"
test = false
doc = false
bench = false
[[bin]]
name = "chunk_stream_ingest"
path = "fuzz_targets/chunk_stream_ingest.rs"
test = false
doc = false
bench = false
[[bin]]
name = "payload_decode_v3"
path = "fuzz_targets/payload_decode_v3.rs"
test = false
doc = false
bench = false
[[bin]]
name = "sanitize_device_id"
path = "fuzz_targets/sanitize_device_id.rs"
test = false
doc = false
bench = false
[[bin]]
name = "url_encode_component"
path = "fuzz_targets/url_encode_component.rs"
test = false
doc = false
bench = false