From 74e8581e42ea4ce951ec13f6805f7ffe0148b46c Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 23 Jun 2025 13:56:17 +0200 Subject: [PATCH] fix --- src/uslp/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/uslp/mod.rs b/src/uslp/mod.rs index 6bd521a..204f328 100644 --- a/src/uslp/mod.rs +++ b/src/uslp/mod.rs @@ -1,5 +1,5 @@ /// # Support of the CCSDS Unified Space Data Link Protocol (USLP) -use crate::{ByteConversionError, CRC_CCITT_FALSE}; +use crate::{ByteConversionError, crc::CRC_CCITT_FALSE}; /// Only this version is supported by the library pub const USLP_VERSION_NUMBER: u8 = 0b1100;