From 7056a6934f07e96be965fd49e0c17d095888480f Mon Sep 17 00:00:00 2001 From: ChanTsune <41658782+ChanTsune@users.noreply.github.com> Date: Thu, 17 Oct 2024 09:24:37 +0900 Subject: [PATCH] :boom: Remove deprecated apis since 0.19.0 - Remove type alias `RegularEntry` --- lib/src/entry.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/src/entry.rs b/lib/src/entry.rs index 9e27babc..29a97198 100644 --- a/lib/src/entry.rs +++ b/lib/src/entry.rs @@ -569,13 +569,6 @@ pub struct NormalEntry> { pub(crate) xattrs: Vec, } -#[deprecated( - note = "Renamed to `libpna::NormalEntry`. This type alias will be removed in libpna version 0.22.0.", - since = "0.19.0" -)] -/// Type alias of [NormalEntry] -pub type RegularEntry = NormalEntry; - impl TryFrom> for NormalEntry where RawChunk: Chunk,