From 8cef5260c364b9a0c63d9e07dda0837c3701bcf6 Mon Sep 17 00:00:00 2001 From: MattJackson <1085847+MattJackson@users.noreply.github.com> Date: Mon, 13 Apr 2026 00:17:57 +0000 Subject: [PATCH] Bump to 0.8.1, make profile module public, fix unused import --- Cargo.toml | 2 +- src/lib.rs | 2 +- src/mux/disc.rs | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9814c56..2dfcaac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libfreemkv" -version = "0.8.0" +version = "0.8.1" edition = "2021" license = "AGPL-3.0-only" description = "Open source raw disc access library for optical drives" diff --git a/src/lib.rs b/src/lib.rs index b3d3c96..6258dc0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -79,7 +79,7 @@ pub(crate) mod labels; pub(crate) mod mpls; pub mod mux; pub(crate) mod platform; -pub(crate) mod profile; +pub mod profile; pub mod scsi; pub(crate) mod sector; pub(crate) mod speed; diff --git a/src/mux/disc.rs b/src/mux/disc.rs index 9f27d94..7c69940 100644 --- a/src/mux/disc.rs +++ b/src/mux/disc.rs @@ -16,7 +16,6 @@ use crate::drive::Drive; use crate::error::Error; use crate::speed::DriveSpeed; use std::io::{self, Read, Write}; -use std::path::Path; /// AACS decryption parameters needed at read time. /// Extracted from `AacsState` so we don't need `Clone` on the full struct.