Bump to 0.8.1, make profile module public, fix unused import

This commit is contained in:
MattJackson
2026-04-13 00:17:57 +00:00
parent f8b5a1eaf1
commit 077e4d018f
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "libfreemkv" name = "libfreemkv"
version = "0.8.0" version = "0.8.1"
edition = "2021" edition = "2021"
license = "AGPL-3.0-only" license = "AGPL-3.0-only"
description = "Open source raw disc access library for optical drives" description = "Open source raw disc access library for optical drives"
+1 -1
View File
@@ -79,7 +79,7 @@ pub(crate) mod labels;
pub(crate) mod mpls; pub(crate) mod mpls;
pub mod mux; pub mod mux;
pub(crate) mod platform; pub(crate) mod platform;
pub(crate) mod profile; pub mod profile;
pub mod scsi; pub mod scsi;
pub(crate) mod sector; pub(crate) mod sector;
pub(crate) mod speed; pub(crate) mod speed;
-1
View File
@@ -16,7 +16,6 @@ use crate::drive::Drive;
use crate::error::Error; use crate::error::Error;
use crate::speed::DriveSpeed; use crate::speed::DriveSpeed;
use std::io::{self, Read, Write}; use std::io::{self, Read, Write};
use std::path::Path;
/// AACS decryption parameters needed at read time. /// AACS decryption parameters needed at read time.
/// Extracted from `AacsState` so we don't need `Clone` on the full struct. /// Extracted from `AacsState` so we don't need `Clone` on the full struct.