0.1.0-pre.004

This commit is contained in:
2026-07-23 18:25:10 +02:00
parent 0da75c1311
commit 149d4c6ef6
85 changed files with 25696 additions and 227 deletions

View File

@@ -1,5 +0,0 @@
// file: kb-lib/src/decoder/api/constants.rs
// version: 1
/// Canonical tracing target for this crate.
pub(crate) const TRACING_TARGET: &str = "kb_decoder_api";

View File

@@ -1,5 +1,5 @@
// file: kb-lib/src/decoder/api/decoder.rs
// version: 4
// version: 5
//! Shared decoder contracts for protocol decoder crates.
@@ -68,7 +68,6 @@ impl ProtocolDecoder for InitialDecoder {
&self,
_observation: &crate::ProgramObservation,
) -> kb_core::Result<std::vec::Vec<crate::DecodedProtocolEvent>> {
let _target = crate::TRACING_TARGET;
return std::result::Result::Ok(std::vec::Vec::new());
}
}