mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-13 14:12:31 +00:00
make crc32 function public in ogg_pager
Signed-off-by: Serial <69764315+Serial-ATA@users.noreply.github.com>
This commit is contained in:
parent
189c28019c
commit
d702eaba8c
2 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ogg_pager"
|
name = "ogg_pager"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
|
authors = ["Serial <69764315+Serial-ATA@users.noreply.github.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@ use std::io::{Read, Seek, SeekFrom};
|
||||||
use byteorder::{LittleEndian, ReadBytesExt};
|
use byteorder::{LittleEndian, ReadBytesExt};
|
||||||
|
|
||||||
pub use error::{PageError, Result};
|
pub use error::{PageError, Result};
|
||||||
|
pub use crc::crc32;
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Page {
|
pub struct Page {
|
||||||
|
|
Loading…
Reference in a new issue