Bump to 0.8.1, make profile module public, fix unused import
This commit is contained in:
+1
-1
@@ -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
@@ -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;
|
||||||
|
|||||||
@@ -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.
|
||||||
|
|||||||
Reference in New Issue
Block a user